From 263acf540d8332c4dd8191153c72b6d8162df712 Mon Sep 17 00:00:00 2001 From: Alexandr Bogomyakov Date: Mon, 18 Mar 2024 19:20:08 +0200 Subject: [PATCH] Fix docker build --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 99882eb..2cdb635 100755 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,7 @@ WORKDIR /app COPY requirements.txt . COPY static static COPY templates templates -COPY main.py . -COPY lib.py . +COPY *.py . RUN pip install --no-cache-dir -r requirements.txt