From 71ab3003398495e0574c1dc344c869afed4d0f8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Fr=C4=85tczak?= Date: Tue, 14 Nov 2023 23:56:07 +0100 Subject: [PATCH] add basic Dockerfile --- Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7247951 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM --platform=$BUILDPLATFORM python:3.10-alpine + +WORKDIR /app + +COPY requirements.txt /app +RUN pip3 install -r requirements.txt + +COPY . /app + +CMD ["python", "main.py"] \ No newline at end of file