| giolekva | 550add7 | 2020-04-11 20:01:40 +0400 | [diff] [blame] | 1 | FROM python:3 |
| 2 | |
| giolekva | 550add7 | 2020-04-11 20:01:40 +0400 | [diff] [blame] | 3 | RUN pip install torch --no-cache-dir |
| 4 | RUN pip install torchvision --no-cache-dir |
| 5 | RUN pip install facenet-pytorch --no-cache-dir |
| 6 | RUN pip install opencv-python-headless --no-cache-dir |
| 7 | RUN pip install matplotlib --no-cache-dir |
| 8 | |
| giolekva | fb52e0d | 2020-04-23 22:52:13 +0400 | [diff] [blame] | 9 | WORKDIR /src/go/src/github.com/giolekva/pcloud/face |
| 10 | COPY . /src/go/src/github.com/giolekva/pcloud/face |