Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -6
Dockerfile
CHANGED
|
@@ -6,12 +6,13 @@ 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 /
|
| 10 |
-
COPY --from=build-stage /app/Rel-18 /
|
| 11 |
-
COPY --from=build-stage /app/Rel-17 /
|
| 12 |
-
COPY --from=build-stage /app/Rel-16 /
|
| 13 |
-
COPY --from=build-stage /app/Rel-15 /
|
| 14 |
-
|
|
|
|
| 15 |
|
| 16 |
# COPY conf/nginx.conf /etc/nginx/nginx.conf
|
| 17 |
# RUN chmod -R 0755 /var/cache/nginx
|
|
|
|
| 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 |
+
#RUN ls /etc/nginx/html
|
| 16 |
|
| 17 |
# COPY conf/nginx.conf /etc/nginx/nginx.conf
|
| 18 |
# RUN chmod -R 0755 /var/cache/nginx
|