Skip to content

Commit

Permalink
chore: update docker file for node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
mint-dewit committed Apr 2, 2021
1 parent 97f1bd0 commit e5fbb3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# BUILD IMAGE
FROM node:8.11.4
FROM node:12.21.0-alpine
WORKDIR /opt/sofie-spreadsheet-gateway
COPY . .
RUN yarn install --check-files --frozen-lockfile
RUN yarn build:main

# DEPLOY IMAGE
FROM node:8.11.4-alpine
FROM node:12.21.0-alpine
RUN apk add --no-cache tzdata
COPY --from=0 /opt/sofie-spreadsheet-gateway /opt/sofie-spreadsheet-gateway
WORKDIR /opt/sofie-spreadsheet-gateway
Expand Down

0 comments on commit e5fbb3b

Please sign in to comment.