Skip to content

Commit 1b4d3fc

Browse files
Update auth-oidc-proxy/auth/Dockerfile
Co-authored-by: Sascha Schwarze <schwarzs@de.ibm.com>
1 parent d47d3e2 commit 1b4d3fc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

auth-oidc-proxy/auth/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
FROM registry.access.redhat.com/ubi9/nodejs-22:latest AS build-env
22
WORKDIR /app
3-
COPY index.mjs .
43
COPY package.json .
54
RUN npm install
65

76
# Use a small distroless image for as runtime image
87
FROM gcr.io/distroless/nodejs22-debian12
98
COPY --from=build-env /app /app
109
WORKDIR /app
11-
COPY public/ public/
10+
COPY index.mjs public/.
1211
EXPOSE 8080
1312
CMD ["index.mjs"]

0 commit comments

Comments
 (0)