Added: Dockerfile

This commit is contained in:
TheJoKlLa 2023-02-07 03:49:51 +01:00
parent 794e822110
commit b84979862e

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM ubuntu:22.04
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -yqq --no-install-recommends python3 python3-pip
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
RUN chmod u+x main.py
ENTRYPOINT ["/app/main.py"]