diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..fd3b67d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:latest + +RUN apt-get update && apt-get install python3 python-pip + +ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen/subgen.py / + +CMD [ "python3", "-u", "/subgen.py"] + +EXPOSE 8090