Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -28,6 +28,6 @@ FROM nginxinc/nginx-unprivileged:alpine
|
|
28 |
COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
|
29 |
COPY --chown=101:101 ./nginx.conf /etc/nginx/conf.d/default.conf
|
30 |
|
31 |
-
COPY --from=build
|
32 |
|
33 |
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
|
28 |
COPY --chown=101:101 --from=build /app/dist/ /usr/share/nginx/html/
|
29 |
COPY --chown=101:101 ./nginx.conf /etc/nginx/conf.d/default.conf
|
30 |
|
31 |
+
COPY --from=build ./entrypoint.sh /entrypoint.sh
|
32 |
|
33 |
ENTRYPOINT [ "/entrypoint.sh" ]
|