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 ef6c20f commit 597d69eCopy full SHA for 597d69e
Dockerfile
@@ -1,6 +1,6 @@
1
# Create our build image
2
# Must be node-18, ref https://github.com/docker/build-push-action/issues/1071
3
-FROM node:18-alpine AS BUILD_IMAGE
+FROM node:18-alpine AS build_image
4
5
# Add git and curl
6
RUN apk update && apk add --no-cache git curl
@@ -24,7 +24,7 @@ FROM node:22-alpine
24
WORKDIR /usr/src/kcapp
25
26
# Copy required files from build image
27
-COPY --from=BUILD_IMAGE /usr/src/kcapp /usr/src/kcapp
+COPY --from=build_image /usr/src/kcapp /usr/src/kcapp
28
29
EXPOSE 3000
30
CMD [ "npm", "run", "docker" ]
0 commit comments