Skip to content

Commit 3299f91

Browse files
author
Yusuke Izawa
committed
initial commit
0 parents  commit 3299f91

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Dockerfile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
FROM ubuntu:16.04
2+
3+
MAINTAINER Yusuke Izawa <[email protected]>
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

Comments
 (0)