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