From ac8a65aaf445b2a8b1005c6e339cc0e48e9a3c9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20Baltac=C4=B1?= Date: Sun, 31 May 2020 16:51:49 +0300 Subject: [PATCH] Add Dockerfile --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..3e6da2209 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM pytorch/pytorch:1.5-cuda10.1-cudnn7-runtime + +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update -qq && \ + apt-get install -y git vim libgtk2.0-dev && \ + rm -rf /var/cache/apk/* + +RUN pip --no-cache-dir install Cython + +COPY requirements.txt /workspace + +RUN pip --no-cache-dir install -r /workspace/requirements.txt