From 8912972e43e4384a85498988e1e0fa41d3cea476 Mon Sep 17 00:00:00 2001 From: McCloudS <64094529+McCloudS@users.noreply.github.com> Date: Sun, 22 Oct 2023 23:46:06 -0600 Subject: [PATCH] Create Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile 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