Skip to content
Snippets Groups Projects
Verified Commit 312c547c authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Use pip to install dependencies in Dockerfile

parent 142019cf
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@ FROM python:3.7-slim AS builder
WORKDIR /tmp/repo
COPY setup.py requirements.txt /tmp/repo/
COPY nnfwtbn /tmp/repo/nnfwtbn
RUN pip install -r requirements.txt
RUN python setup.py install
FROM python:3.7-slim
......
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