release.dockerfile 292 B

12345678910111213141516
  1. FROM python:3.11-slim
  2. ARG VERSION
  3. LABEL maintainer="Zauberzeug GmbH <info@zauberzeug.com>"
  4. RUN python -m pip install nicegui==$VERSION itsdangerous isort
  5. WORKDIR /app
  6. COPY main.py README.md prometheus.py ./
  7. ADD examples ./examples
  8. ADD website ./website
  9. EXPOSE 8080
  10. CMD python3 main.py