From 02d50ead6ae7aac550957a7e5154c59558504bb3 Mon Sep 17 00:00:00 2001 From: Timon Horlboge Date: Sun, 22 Feb 2026 15:08:40 +0100 Subject: [PATCH] update containerfile --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 17728e6..cb1aec3 100644 --- a/Containerfile +++ b/Containerfile @@ -12,7 +12,7 @@ WORKDIR /app COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt -COPY * /app/ +COPY . /app/ CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0"]