Addition of working dockerfile

This commit is contained in:
Ainsey11 2022-04-15 01:12:21 +01:00
parent 6de6a45836
commit ace246386f
1 changed files with 6 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -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"]