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 8014cdc commit 8508334Copy full SHA for 8508334
Dockerfile
@@ -1,13 +1,13 @@
1
ARG NGINX_VERSION
2
3
4
-FROM debian:bullseye-slim as BASE_IMAGE
+FROM debian:bullseye-slim as base_image
5
LABEL stage=builder
6
RUN apt-get update \
7
&& apt-get install -y curl build-essential
8
9
10
-FROM BASE_IMAGE as BUILD_IMAGE
+FROM base_image as build_image
11
12
ENV LD_LIBRARY_PATH=/usr/local/lib
13
@@ -38,4 +38,4 @@ RUN apt-get update \
38
39
LABEL stage=
40
LABEL maintainer="TeslaGov" email="[email protected]"
41
-COPY --from=BUILD_IMAGE /root/build/nginx/objs/ngx_http_auth_jwt_module.so /usr/lib64/nginx/modules/
+COPY --from=build_image /root/build/nginx/objs/ngx_http_auth_jwt_module.so /usr/lib64/nginx/modules/
0 commit comments