From ace246386f10d05bc87f260f184d813532ee1f68 Mon Sep 17 00:00:00 2001 From: Ainsey11 Date: Fri, 15 Apr 2022 01:12:21 +0100 Subject: [PATCH] Addition of working dockerfile --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..527e099 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.10-slim-buster +WORKDIR /app +COPY tubearchivist-metrics/requirements.txt . +RUN pip3 install -r requirements.txt +COPY . . +CMD ["python3", "-u", "tubearchivist-metrics/main.py"] \ No newline at end of file