From d4a57e33859f702762a3ece2723191a3500acdf4 Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Fri, 12 Jan 2024 16:53:55 +0100 Subject: [PATCH] Dockerfile to install dependencies & execute check & action --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e62f515 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.10-alpine + +COPY *.py . +COPY .env . + +RUN pip install requests python-dotenv +CMD python3 main.py