10 lines
208 B
Docker
10 lines
208 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && apt-get install python3 python3-pip
|
|
|
|
ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen/subgen.py /
|
|
|
|
CMD [ "python3", "-u", "/subgen.py"]
|
|
|
|
EXPOSE 8090
|