We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce04bec commit 5290331Copy full SHA for 5290331
Dockerfile
@@ -10,8 +10,6 @@ ARG SENTRY_PROJECT
10
ENV SENTRY_PROJECT=$SENTRY_PROJECT
11
ARG SENTRY_RELEASE
12
ENV SENTRY_RELEASE=$SENTRY_RELEASE
13
-ARG APP_VERSION
14
-ENV APP_VERSION=$APP_VERSION
15
16
RUN apt-get update
17
RUN apt-get -y install ca-certificates
@@ -27,6 +25,8 @@ RUN pnpm --filter=app-builder --prod deploy /prod/app-builder
27
25
FROM gcr.io/distroless/nodejs22-debian12 AS app-builder
28
26
ENV NODE_ENV=production
29
ENV PORT=${PORT:-8080}
+ARG APP_VERSION
+ENV APP_VERSION=$APP_VERSION
30
COPY --from=build /prod/app-builder/node_modules /prod/app-builder/node_modules
31
COPY --from=build /prod/app-builder/build /prod/app-builder/build
32
WORKDIR /prod/app-builder
0 commit comments