Dockerfile hinzugefügt

This commit is contained in:
Rsclub2_2 2023-10-09 15:20:06 +00:00
parent 59faf0deba
commit c851849851

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:latest
WORKDIR /hafas_db
COPY Hafas_Main_web.py app.py
COPY templates/* ./templates
RUN pip3 install pyhafas Flask typing
CMD ["python3", "app.py"]
EXPOSE 5000