Skip to content
Snippets Groups Projects
Commit 64f4b00b authored by sm1524's avatar sm1524
Browse files

Upload New File

parent f89bcf1d
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:oracular
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install python3-pip python3-venv
COPY requirements.txt /model/
RUN python3 -m venv /model
RUN /model/bin/pip3 install -r /model/requirements.txt
COPY model.py /model/
ENTRYPOINT ["/model/bin/python3", "/model/model.py"]
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