Files
Docker-Flask-QR/Dockerfile
2023-11-08 14:10:17 +01:00

15 lines
296 B
Docker

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