Skip to content
Snippets Groups Projects
Commit 0cd858ad authored by Stavros Mitsis's avatar Stavros Mitsis
Browse files

Commit test

parent 2a593c8b
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,8 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install python3 ...@@ -3,6 +3,8 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install python3
COPY requirements.txt /model/ COPY requirements.txt /model/
RUN python3 -m venv /model RUN python3 -m venv /model
RUN /model/bin/pip3 install -r /model/requirements.txt RUN /model/bin/pip3 install -r /model/requirements.txt
COPY model.py /model/ COPY helper_functions.py /model/
COPY best_model.pth /model/
COPY best_hyperparameters.json /model/
ENTRYPOINT ["/model/bin/python3", "/model/model.py"] ENTRYPOINT ["/model/bin/python3", "/model/model.py"]
CMD ["--input=/data/test.csv", "--output=/data/aki.csv"] CMD ["--input=/data/test.csv", "--output=/data/aki.csv"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment