Skip to content

Commit

Permalink
Update node in image
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaskello committed Nov 21, 2023
1 parent 1a2a621 commit 8aa6fef
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,11 +1,11 @@
FROM node:14.15.4 AS builder
FROM node:14.21.3 AS builder
WORKDIR /app
COPY src src
COPY package.json yarn.lock tsconfig.json tsconfig.settings.json ./
RUN yarn install
RUN yarn run build

FROM node:14.15.4
FROM node:14.21.3

WORKDIR /app
COPY --from=builder /app/lib/ ./lib
Expand Down

0 comments on commit 8aa6fef

Please sign in to comment.