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 d47d3e2 commit 1b4d3fcCopy full SHA for 1b4d3fc
auth-oidc-proxy/auth/Dockerfile
@@ -1,13 +1,12 @@
1
FROM registry.access.redhat.com/ubi9/nodejs-22:latest AS build-env
2
WORKDIR /app
3
-COPY index.mjs .
4
COPY package.json .
5
RUN npm install
6
7
# Use a small distroless image for as runtime image
8
FROM gcr.io/distroless/nodejs22-debian12
9
COPY --from=build-env /app /app
10
11
-COPY public/ public/
+COPY index.mjs public/.
12
EXPOSE 8080
13
CMD ["index.mjs"]
0 commit comments