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 7204eff commit 77a557aCopy full SHA for 77a557a
1 file changed
Dockerfile
@@ -2,7 +2,7 @@ FROM node:22.14@sha256:bac8ff0b5302b06924a5e288fb4ceecef9c8bb0bb92515985d2efdc3a
2
WORKDIR /app
3
4
# Install dependencies based on the preferred package manager
5
-COPY package.json package-lock.json* ./
+COPY package.json package-lock.json* .npmrc ./
6
RUN npm ci
7
8
# Rebuild the source code only when needed
@@ -31,6 +31,8 @@ RUN cp .next/routes-manifest.json .next/routes-manifest.orig.json
31
# Production image, copy all the files and run next
32
FROM node:22.14@sha256:bac8ff0b5302b06924a5e288fb4ceecef9c8bb0bb92515985d2efdc3a2447052 AS runner
33
34
+ARG APP_DEPLOYMENT=INCIDENT_MANAGER
35
+ARG ORY_KRATOS_URL
36
37
ENV NEXT_PUBLIC_APP_DEPLOYMENT=${APP_DEPLOYMENT}
38
ENV ORY_KRATOS_URL=${ORY_KRATOS_URL}
0 commit comments