Files
training-software/frontend/Dockerfile
Paperclip CTO 4709794301
All checks were successful
CI / lint (push) Successful in 7s
CI / test (push) Successful in 23s
CI / build-container (push) Successful in 12s
Add local docker frontend runtime API env configuration
2026-05-19 13:26:03 +02:00

8 lines
368 B
Docker

FROM nginx:1.27-alpine
COPY frontend/nginx.frontend.conf /etc/nginx/conf.d/default.conf
COPY frontend/public/ /usr/share/nginx/html/
COPY frontend/public/config.template.js /usr/share/nginx/html/config.template.js
COPY frontend/docker-entrypoint/40-generate-config.sh /docker-entrypoint.d/40-generate-config.sh
RUN chmod +x /docker-entrypoint.d/40-generate-config.sh