From b42be38db821db318292b99dbe0d8f4769e4edcf Mon Sep 17 00:00:00 2001 From: javex Date: Tue, 26 Sep 2023 22:32:29 +0930 Subject: [PATCH] Adjust dockerfile for new package structure --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8956f6c..cdf578b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM python:3 RUN mkdir -p /app/output WORKDIR /app -COPY ./coles.py ./woolies.py ./requirements.txt ./ +COPY ./main.py ./requirements.txt ./ RUN pip3 install -r requirements.txt +COPY hotprices_au ./hotprices_au ENTRYPOINT [ "python3" ] \ No newline at end of file