Files
Docker-Flask-QR/Dockerfile
2023-11-02 15:45:09 +01:00

15 lines
286 B
Docker

FROM python:slim
LABEL authors="tebarius"
LABEL version="1.0"
LABEL description="Simple QR-Code-Generator-Server"
WORKDIR /app
COPY ./app /app/
#RUN pip install --upgrade pip
RUN pip install --trusted-host pypi.python.org -r requirements.txt
EXPOSE 80
CMD ["python", "Flask-QR.py"]