Skip to content

Commit

Permalink
Dockerfile: update node to v16
Browse files Browse the repository at this point in the history
This fixes #449
  • Loading branch information
jsarenik committed Jun 7, 2022
1 parent cf982d3 commit 1cade75
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,9 +1,9 @@
FROM node:14 as builder
FROM node:16 as builder
WORKDIR /workspace
COPY . .
RUN npm install

FROM node:14-alpine
FROM node:16-alpine
WORKDIR /workspace
COPY --from=builder /workspace .
RUN apk --update add git
Expand Down

0 comments on commit 1cade75

Please sign in to comment.