Skip to content

Commit

Permalink
chore(dockerfile): now build the project in a node-14 container inste…
Browse files Browse the repository at this point in the history
…ad of node-12
  • Loading branch information
FlorentinTh committed Jan 21, 2022
1 parent 6f95b25 commit b4d3dfa
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,4 +1,4 @@
FROM node:12-slim AS build
FROM node:14-slim AS build

WORKDIR /usr/src/app

Expand All @@ -10,7 +10,7 @@ RUN npm install

RUN npm run build

FROM node:12-slim
FROM node:14-slim

COPY package*.json .

Expand Down

0 comments on commit b4d3dfa

Please sign in to comment.