From 53f904ee0f3d4dfc4a0dd494460872f532cb49e2 Mon Sep 17 00:00:00 2001 From: Matthew Chellew Date: Mon, 23 Oct 2023 14:45:40 +0300 Subject: [PATCH] Change ADD to point to requirements file Pointing to the python file was not needed as it's already pulled into the correct folder --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1c20663..7fd1ab9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ WORKDIR /subgen RUN apt-get update && apt-get -y install python3 python3-pip +ADD https://raw.githubusercontent.com/McCloudS/subgen/main/subgen/requirements.txt /subgen/requirements.txt + RUN pip install -r requirements.txt ENTRYPOINT ["python3"]