From b84979862e6172881d1a65608cb313f6827d9c7c Mon Sep 17 00:00:00 2001 From: TheJoKlLa Date: Tue, 7 Feb 2023 03:49:51 +0100 Subject: [PATCH] Added: Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b1b9968 --- /dev/null +++ b/Dockerfile @@ -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"] \ No newline at end of file