From 2dea61b459ba5c0ca6e9daa730b6e730900057cc Mon Sep 17 00:00:00 2001 From: McCloudS <64094529+McCloudS@users.noreply.github.com> Date: Tue, 31 Jan 2023 08:39:14 -0700 Subject: [PATCH] Update Dockerfile --- subgen/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/subgen/Dockerfile b/subgen/Dockerfile index 0a02eda..a3471b6 100644 --- a/subgen/Dockerfile +++ b/subgen/Dockerfile @@ -2,9 +2,8 @@ FROM python RUN apt-get update && apt-get install -y ffmpeg git gcc -RUN pip3 install webhook_listener -EXPOSE 8090 +RUN pip3 install flask requests -COPY ./subgen/subgen.py / +ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen/subgen.py / CMD [ "python3", "-u", "/subgen.py"]