From 95b04ccd7253206968a95d5124dfe71e4311e919 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 13 Jan 2024 01:58:16 +0100 Subject: [PATCH] Updated Dockerfile COPY statements --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e62f515..94ff615 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.10-alpine -COPY *.py . -COPY .env . +COPY *.py ./ +COPY .env ./ RUN pip install requests python-dotenv CMD python3 main.py