mirror of
https://github.com/tebarius/Docker-Flask-QR.git
synced 2025-12-20 22:23:30 +01:00
17 lines
342 B
Docker
17 lines
342 B
Docker
FROM python:slim
|
|
|
|
LABEL authors="tebarius"
|
|
LABEL version="1.2"
|
|
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
|
|
|
|
ENV HTTP_METHOD POST
|
|
|
|
CMD ["sh", "-c", "python ${HTTP_METHOD}-Flask-QR.py"] |