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