Skip to content
Snippets Groups Projects
Commit 705d5648 authored by kmilicic's avatar kmilicic
Browse files

Dockerfile venv

parent 615c6d9a
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
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -yq install python3-pip python3-venv
RUN python3 -m venv /venv
ENV PATH="/venv/bin:$PATH"
COPY requirements.txt /model/
RUN pip3 install -r /model/requirements.txt
COPY model.py best_model.pth /model/
......
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