heretothere/dockerfile
2024-11-21 15:59:11 +00:00

14 lines
174 B
Plaintext

FROM python:3.12.3-slim
WORKDIR /app
RUN pip install cherrypy pillow qrcode
RUN apt-get update
RUN apt-get install nano
COPY . .
EXPOSE 8170
CMD ["python", "start.py"]