Change ADD to point to requirements file

Pointing to the python file was not needed as it's already pulled into the correct folder
This commit is contained in:
Matthew Chellew
2023-10-23 14:45:40 +03:00
committed by GitHub
parent 0d9810be6a
commit 53f904ee0f

View File

@@ -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"]