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 5fa61a3 commit 17cc4d8Copy full SHA for 17cc4d8
Dockerfile
@@ -1,8 +1,8 @@
1
-FROM node:20-alpine AS build
+FROM node:22.18.0-alpine3.22 AS build
2
WORKDIR /app
3
COPY . .
4
-RUN yarn install
5
-RUN yarn build
+RUN npm install
+RUN npm build
6
7
FROM nginx:1.24-alpine
8
COPY --from=build /app/dist /usr/share/nginx/html
0 commit comments