fixed docker

This commit is contained in:
Michael Duong 2023-09-18 20:10:06 +01:00
parent e6b5d5900b
commit dd86f103e9

View file

@ -7,8 +7,8 @@ RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Assuming in the CI/CD step, there will be a dvc pull step to get data and model, so will just need to run a single script
COPY src/ /home/src/
COPY pipeline/ /home/pipeline/
WORKDIR /home/src/
WORKDIR /home/pipeline/
CMD [ "python", "generate_predictions.py"]