We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2babb20 commit 09a94e5Copy full SHA for 09a94e5
ui/Dockerfile
@@ -13,4 +13,4 @@ COPY public/images /usr/share/nginx/html/images
13
COPY nginx-entrypoint.sh /usr/local/bin/nginx-entrypoint.sh
14
15
EXPOSE 80
16
-ENTRYPOINT ["nginx-entrypoint.sh"]
+CMD ["nginx-entrypoint.sh"]
ui/nginx-entrypoint.sh
@@ -5,4 +5,5 @@ window.__CONFIG__ = {
5
backendUrl: "${BACKEND_URL}"
6
};
7
EOF
8
-nginx -g 'daemon off;'
+
9
+exec nginx -g 'daemon off;'
0 commit comments