Update Dockerfile

This commit is contained in:
McCloudS
2023-10-23 12:12:30 -06:00
committed by GitHub
parent ebd7e32021
commit f85d852353

View File

@@ -1,10 +1,11 @@
FROM ubuntu:latest
WORKDIR /subgen
RUN apt-get update && apt-get -y install python3 python3-pip
ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen/subgen.py /subgen/subgen.py
ENTRYPOINT ["python3"]
CMD ["/subgen/subgen.py"]
CMD ["python", "-u", "subgen.py"]
EXPOSE 8090