Files
MarketingTool/apps/web/Dockerfile
T
Marco0300 01da41cc21
CI / compose (push) Successful in 10m13s
proxy api through web hostname
2026-09-03 16:40:18 +02:00

17 lines
452 B
Docker

FROM python:3.13-alpine
RUN addgroup -S app && adduser -S -G app app
WORKDIR /srv
COPY index.html /srv/index.html
COPY styles.css /srv/styles.css
COPY config.js /srv/config.js
COPY asset-manifest.json /srv/asset-manifest.json
COPY app.js /srv/app.js
COPY healthz /srv/healthz
COPY health.html /srv/health.html
COPY error.html /srv/error.html
COPY server.py /srv/server.py
RUN chown -R app:app /srv
USER app
EXPOSE 8080
CMD ["python", "/srv/server.py"]