Added env to dockerfile and docker-compose
This commit is contained in:
parent
ab32b3c94e
commit
94c2879cc0
@ -14,5 +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"
|
||||||
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;'"]
|
@ -9,3 +9,5 @@ services:
|
|||||||
- default
|
- default
|
||||||
ports:
|
ports:
|
||||||
- "8080:80"
|
- "8080:80"
|
||||||
|
environment:
|
||||||
|
API_URL: http://localhost:5001
|
Loading…
x
Reference in New Issue
Block a user