| giolekva | c890dea | 2020-05-05 18:21:10 +0400 | [diff] [blame] | 1 | FROM ubuntu:20.04 |
| giolekva | 550add7 | 2020-04-11 20:01:40 +0400 | [diff] [blame] | 2 | |
| giolekva | c890dea | 2020-05-05 18:21:10 +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 |
| giolekva | 550add7 | 2020-04-11 20:01:40 +0400 | [diff] [blame] | 8 | |
| giolekva | c890dea | 2020-05-05 18:21:10 +0400 | [diff] [blame] | 9 | # RUN pip install numpy |
| 10 | |
| 11 | RUN apt-get -y update |
| 12 | RUN DEBIAN_FRONTEND=noninteractive apt-get -y install \ |
| 13 | python3 \ |
| 14 | python3-numpy \ |
| 15 | python3-opencv |
| 16 | |
| 17 | WORKDIR /app |
| 18 | COPY . /app |