From c85184985100d596e8a0227f4f011498acd2fd6a Mon Sep 17 00:00:00 2001 From: Rsclub2_2 Date: Mon, 9 Oct 2023 15:20:06 +0000 Subject: [PATCH] =?UTF-8?q?Dockerfile=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..a91a0d9 --- /dev/null +++ b/Dockerfile @@ -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 \ No newline at end of file