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