diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fe060ae --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ + +FROM ubuntu:22.04 + +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get clean \ + && apt-get update +# && apt-get upgrade -y +RUN apt-get install -y python3 python3-pip +RUN pip3 install -r requirements.txt +