-
Notifications
You must be signed in to change notification settings - Fork 316
/
Dockerfile
29 lines (21 loc) · 848 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
FROM nvidia/cuda:10.2-base-ubuntu16.04
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y locales \
&& sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \
&& dpkg-reconfigure --frontend=noninteractive locales \
&& update-locale LANG=en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN apt-get update -y && apt-get install -y software-properties-common && add-apt-repository ppa:deadsnakes/ppa
RUN apt-get update \
&& apt-get install -y curl unzip \
python3.6 python3-pip python3-setuptools \
&& ln -s /usr/bin/python3.6 /usr/bin/python \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# update pip
RUN python3.6 -m pip install pip --upgrade
RUN python3.6 -m pip install wheel
COPY requirements.txt /src/
WORKDIR /src
RUN pip3.6 install -r /src/requirements.txt