Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down