Dockerfiles for testing python2/3
This commit is contained in:
parent
668a73abf6
commit
c45d781c96
26
Dockerfile.test_py2
Normal file
26
Dockerfile.test_py2
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Dockerfile for testing PyBitmessage with Python 2
|
||||
# docker build -f Dockerfile.test_py2 .
|
||||
|
||||
FROM ubuntu:xenial
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
||||
build-essential libcap-dev python-all-dev python-setuptools virtualenv
|
||||
|
||||
WORKDIR /home/bitmessage
|
||||
RUN ln -s src pybitmessage # tests environment
|
||||
|
||||
ENV VIRTUAL_ENV=/home/bitmessage/venv
|
||||
RUN virtualenv $VIRTUAL_ENV
|
||||
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||
|
||||
RUN python --version
|
||||
RUN pip --version
|
||||
|
||||
ADD requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
ADD . .
|
||||
|
||||
RUN python setup.py install
|
||||
RUN python setup.py test
|
27
Dockerfile.test_py3
Normal file
27
Dockerfile.test_py3
Normal file
|
@ -0,0 +1,27 @@
|
|||
# Dockerfile for testing PyBitmessage with Python 3
|
||||
# docker build -f Dockerfile.test_py3 .
|
||||
|
||||
FROM ubuntu:xenial
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -yq --no-install-suggests --no-install-recommends \
|
||||
build-essential libcap-dev libssl-dev python3-all-dev python3-setuptools \
|
||||
virtualenv
|
||||
|
||||
WORKDIR /home/bitmessage
|
||||
RUN ln -s src pybitmessage # tests environment
|
||||
|
||||
ENV VIRTUAL_ENV=/home/bitmessage/venv
|
||||
RUN virtualenv -p python3 $VIRTUAL_ENV
|
||||
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
|
||||
|
||||
RUN python --version
|
||||
RUN pip --version
|
||||
|
||||
ADD requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
ADD . .
|
||||
|
||||
RUN python setup.py install
|
||||
RUN python setup.py test
|
Loading…
Reference in New Issue
Block a user