forked from JuanCuello/conformity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (29 loc) · 742 Bytes
/
Dockerfile
File metadata and controls
33 lines (29 loc) · 742 Bytes
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
29
30
31
32
33
FROM ubuntu:16.04
RUN apt-get update && \
apt-get install -y \
git \
pkg-config \
software-properties-common \
wget
RUN add-apt-repository ppa:deadsnakes/ppa && \
apt-get update && \
apt-get install -y \
python2.7 \
python2.7-dev \
python3.4 \
python3.4-dev \
python3.5 \
python3.5-dev \
python3.6 \
python3.6-dev \
python3.7 \
python3.7-dev \
python3.8 \
python3.8-distutils \
python3.8-dev
RUN wget https://bootstrap.pypa.io/get-pip.py -O /tmp/get-pip.py && \
python3.7 /tmp/get-pip.py && \
python3.7 -m pip install tox
WORKDIR /test/conformity
CMD ["tox"]
ADD . /test/conformity