Initial commit

This commit is contained in:
2023-10-31 20:15:54 +01:00
commit c2504f2519
15 changed files with 562 additions and 0 deletions

16
Dockerfile-RasPi Normal file
View File

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