From 947058d273bce51103cb117a1f1a25c1d34bacb1 Mon Sep 17 00:00:00 2001 From: Samuel Bodin Date: Sat, 10 Jul 2021 18:05:16 +0200 Subject: [PATCH] fix: docker build (#651) --- .circleci/config.yml | 4 ++++ Dockerfile | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3465a4aab..8d2703df6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -51,6 +51,10 @@ jobs: working_directory: ~/repo steps: - attach_workspace: *attach_work_dir + + - setup_remote_docker: + version: 19.03.13 + # - run: # name: Release # command: yarn semantic-release diff --git a/Dockerfile b/Dockerfile index d30440745..b82fa8dc2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,9 @@ FROM node:14.16.1-alpine AS base ENV NODE_ENV production +# Install dependencies for native deps +RUN apk add --no-cache bash python3 + # Setup the app WORKDIR WORKDIR /app