updated env var to not use ssl by default

This commit is contained in:
Nicolai Ort 2020-06-08 09:28:37 +02:00
parent 57ad2efcfb
commit 7baf6a7396

View File

@ -14,6 +14,6 @@ RUN npm run build
# Stage 2: Package up with the webserver # Stage 2: Package up with the webserver
FROM nginx:alpine AS final FROM nginx:alpine AS final
ENV API_URL "https://localhost:5001" ENV API_URL "http://localhost:5001"
COPY --from=build /build/dist/frontend /usr/share/nginx/html COPY --from=build /build/dist/frontend /usr/share/nginx/html
CMD ["/bin/sh", "-c", "envsubst < /usr/share/nginx/html/assets/env.template.js > /usr/share/nginx/html/assets/env.js && exec nginx -g 'daemon off;'"] CMD ["/bin/sh", "-c", "envsubst < /usr/share/nginx/html/assets/env.template.js > /usr/share/nginx/html/assets/env.js && exec nginx -g 'daemon off;'"]