Skip to content

Commit

Permalink
chore: revert node 14
Browse files Browse the repository at this point in the history
  • Loading branch information
Uladzimir Havenchyk committed Apr 30, 2020
1 parent adbced4 commit d4da728
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:13-alpine
FROM node:14-alpine

ARG NPM_TOKEN
ENV NPM_TOKEN ${NPM_TOKEN}
Expand Down Expand Up @@ -44,13 +44,10 @@ WORKDIR /app
# Enables layer caching
COPY package.json yarn.lock ./

RUN yarn install --frozen-lockfile
RUN yarn config set workspaces-experimental true && yarn install --frozen-lockfile && yarn cache clean

COPY . /app

RUN yarn config set workspaces-experimental true
RUN yarn install --frozen-lockfile && yarn cache clean

# needs to be +rw for rm and mkdir /build
RUN chmod a+rw /app && \
chmod a+rw /app/packages/picasso && \
Expand Down

0 comments on commit d4da728

Please sign in to comment.