Skip to content

Commit

Permalink
feat: [PIE-2614]: fix docker entrypoint path (#7188)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbansal authored Feb 4, 2022
1 parent 8465d32 commit b1e666f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM nginx:alpine

COPY dist /opt/nextgenui
COPY docker/entrypoint.sh /opt/nextgenui/
COPY docker/entrypoint.sh /opt/
COPY docker/nginx.conf /etc/nginx/
COPY docker/nginx-ipv4-only.conf /etc/nginx/
WORKDIR /opt/nextgenui
Expand All @@ -16,4 +16,4 @@ USER 101


EXPOSE 8080
ENTRYPOINT ["sh", "/opt/nextgenui/entrypoint.sh"]
ENTRYPOINT ["sh", "/opt/entrypoint.sh"]

0 comments on commit b1e666f

Please sign in to comment.