From a39a63d1d2287df6b11e899ab215a9d089d8be8b Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Sat, 13 Jan 2024 02:02:35 +0100 Subject: [PATCH] Don't copy .env file into docker container --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 94ff615..3619df6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM python:3.10-alpine COPY *.py ./ -COPY .env ./ RUN pip install requests python-dotenv CMD python3 main.py