ShawnAI commited on
Commit
7a2317e
1 Parent(s): 0e17b5c

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
  FROM nginxinc/nginx-unprivileged as production-stage
9
- COPY dist /etc/nginx/html
10
- COPY --from=build-stage /app/Rel-18 /etc/nginx/html/Rel-18
11
- COPY --from=build-stage /app/Rel-17 /etc/nginx/html/Rel-17
12
- COPY --from=build-stage /app/Rel-16 /etc/nginx/html/Rel-16
13
- COPY --from=build-stage /app/Rel-15 /etc/nginx/html/Rel-15
14
- RUN ls /etc/nginx/html
15
  # COPY conf/nginx.conf /etc/nginx/nginx.conf
16
  # RUN chmod -R 0755 /var/cache/nginx
17
 
 
6
  RUN git clone -b Rel-17 https://github.com/jdegre/5GC_APIs Rel-15
7
 
8
  FROM nginxinc/nginx-unprivileged as production-stage
9
+ COPY dist /usr/share/nginx/html
10
+ COPY --from=build-stage /app/Rel-18 /usr/share/nginx/html/Rel-18
11
+ COPY --from=build-stage /app/Rel-17 /usr/share/nginx/html/Rel-17
12
+ COPY --from=build-stage /app/Rel-16 /usr/share/nginx/html/Rel-16
13
+ COPY --from=build-stage /app/Rel-15 /usr/share/nginx/html/Rel-15
14
+
15
  # COPY conf/nginx.conf /etc/nginx/nginx.conf
16
  # RUN chmod -R 0755 /var/cache/nginx
17