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