File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments