diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b9d5508 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM ubuntu:latest + +RUN apt-get update && apt-get install -y python3 python3-pip + +WORKDIR /app + +COPY . . + +RUN pip3 install -r requirements.txt +