ShawnAI commited on
Commit
5e117a5
1 Parent(s): a02af46

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -6,12 +6,12 @@ RUN git clone -b Rel-17 https://github.com/jdegre/5GC_APIs Rel-16
6
  RUN git clone -b Rel-17 https://github.com/jdegre/5GC_APIs Rel-15
7
 
8
 
9
- FROM nginxinc/nginx-unprivileged as production-stage
10
- COPY dist /usr/local/nginx/html
11
- COPY --from=build-stage /app/Rel-18 /usr/local/nginx/html/Rel-18
12
- COPY --from=build-stage /app/Rel-17 /usr/local/nginx/html/Rel-17
13
- COPY --from=build-stage /app/Rel-16 /usr/local/nginx/html/Rel-16
14
- COPY --from=build-stage /app/Rel-15 /usr/local/nginx/html/Rel-15
15
  RUN nginx -V
16
  RUN cat /etc/nginx/nginx.conf
17
 
 
6
  RUN git clone -b Rel-17 https://github.com/jdegre/5GC_APIs Rel-15
7
 
8
 
9
+ FROM nginxinc/nginx-unprivileged:alpine as production-stage
10
+ COPY dist /usr/share/nginx/html
11
+ COPY --from=build-stage /app/Rel-18 /usr/share/nginx/html/Rel-18
12
+ COPY --from=build-stage /app/Rel-17 /usr/share/nginx/html/Rel-17
13
+ COPY --from=build-stage /app/Rel-16 /usr/share/nginx/html/Rel-16
14
+ COPY --from=build-stage /app/Rel-15 /usr/share/nginx/html/Rel-15
15
  RUN nginx -V
16
  RUN cat /etc/nginx/nginx.conf
17