Create Dockerfile

This commit is contained in:
McCloudS
2023-10-22 23:46:06 -06:00
committed by GitHub
parent 6e47d81a9e
commit 8912972e43

9
Dockerfile Normal file
View File

@@ -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