We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7b2462 commit aaa9bddCopy full SHA for aaa9bdd
compose/frontend/Dockerfile
@@ -1,12 +1,12 @@
1
# Use an official node runtime as a parent image
2
-FROM node:latest
+FROM node:20.8.1
3
4
WORKDIR /app/
5
RUN chown node:root /app
6
7
# Install dependencies
8
COPY ./src/frontend/package.json /app/
9
-
+COPY ./src/frontend/package-lock.json /app/
10
RUN npm install
11
12
# Add rest of the client code
compose/frontend/StaticBuild
-FROM node:latest AS buildnode
+FROM node:20.8.1 AS buildnode
0 commit comments