We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit 3299f91Copy full SHA for 3299f91
1 file changed
Dockerfile
@@ -0,0 +1,30 @@
1
+FROM ubuntu:16.04
2
+
3
+MAINTAINER Yusuke Izawa <yuizalp@gmail.com>
4
5
+RUN DEBIAN_FRONTEND=noninteractive \
6
+ apt-get update -y \
7
+ && apt-get install -y --no-install-recommends \
8
+ git-core \
9
+ wget \
10
+ libffi-dev \
11
+ pkg-config \
12
+ python-dev \
13
+ python-pip \
14
+ python-setuptools \
15
+ build-essential \
16
+ && apt-get clean
17
18
+RUN cd tmp \
19
+ && wget -q -O - https://bitbucket.org/pypy/pypy/downloads/pypy-5.1.1-linux64.tar.bz2 | tar jx \
20
+ && ln -s /tmp/pypy-5.1.1-linux64/bin/pypy /usr/local/bin/pypy
21
22
+RUN cd /tmp \
23
+ && wget -q -O - https://bitbucket.org/pypy/pypy/downloads/pypy-5.1.1-src.tar.bz2 | tar jx
24
25
+RUN pip install -U pip \
26
+ && pip install pytest \
27
+ && pip install pytest-cov \
28
+ && pip install flake8 \
29
+ && pip install mock
30
0 commit comments