Skip to content

Commit

Permalink
Updated slavepython for v1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jowr committed Mar 31, 2016
1 parent c41e281 commit 4ffdf7c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions slavepython/32bit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Do not edit this file manually, it was generated on 2015-11-07 at 20:42 from slavepython/Dockerfile.in
# Do not edit this file manually, it was generated on 2016-03-31 at 11:08 from slavepython/Dockerfile.in
# Define an image for CoolProp Python buildslaves
FROM coolprop/slavebase32:latest
FROM coolprop/slavebase32:v1.3
# File Author / Maintainer
MAINTAINER Jorrit Wronski <jowr@ipu.dk>
# Make sure the follwoing commands are run as root user
USER root
WORKDIR /root
# Install system tools for compilation of Python extensions numpy-scipy-pandas
RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y \
RUN apt-key update -qq && apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y \
build-essential gcc python-dev libhdf5-serial-dev libnetcdf-dev liblapack-dev libatlas-dev libblas-dev && \
DEBIAN_FRONTEND="noninteractive" apt-get autoclean && DEBIAN_FRONTEND="noninteractive" apt-get clean && DEBIAN_FRONTEND="noninteractive" apt-get autoremove
# Make sure the following commands are run as the buildbot user
Expand All @@ -17,4 +17,4 @@ WORKDIR /home/buildbot
RUN curl -o miniconda.sh "http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86.sh" && chmod +x miniconda.sh && linux32 ./miniconda.sh -b && rm miniconda.sh && echo "export PATH=/home/buildbot/miniconda3/bin:/home/buildbot/miniconda2/bin:$PATH" >> /home/buildbot/.bash_profile
ENV PATH /home/buildbot/miniconda3/bin:/home/buildbot/miniconda2/bin:$PATH
# Add the miniconda environments for the Python builds
RUN linux32 conda install conda-build && linux32 conda create -n CoolProp27 python=2.7 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && linux32 conda create -n CoolProp33 python=3.3 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && linux32 conda create -n CoolProp34 python=3.4 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && linux32 conda clean -yilts
RUN linux32 conda install conda-build && linux32 conda create -n CoolProp27 python=2.7 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && linux32 conda create -n CoolProp33 python=3.3 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && linux32 conda create -n CoolProp34 python=3.4 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && linux32 conda create -n CoolProp35 python=3.5 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && linux32 conda clean -yilts
8 changes: 4 additions & 4 deletions slavepython/64bit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Do not edit this file manually, it was generated on 2015-11-07 at 20:42 from slavepython/Dockerfile.in
# Do not edit this file manually, it was generated on 2016-03-31 at 11:08 from slavepython/Dockerfile.in
# Define an image for CoolProp Python buildslaves
FROM coolprop/slavebase:latest
FROM coolprop/slavebase:v1.3
# File Author / Maintainer
MAINTAINER Jorrit Wronski <jowr@ipu.dk>
# Make sure the follwoing commands are run as root user
USER root
WORKDIR /root
# Install system tools for compilation of Python extensions numpy-scipy-pandas
RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y \
RUN apt-key update -qq && apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -y \
build-essential gcc python-dev libhdf5-serial-dev libnetcdf-dev liblapack-dev libatlas-dev libblas-dev && \
DEBIAN_FRONTEND="noninteractive" apt-get autoclean && DEBIAN_FRONTEND="noninteractive" apt-get clean && DEBIAN_FRONTEND="noninteractive" apt-get autoremove
# Make sure the following commands are run as the buildbot user
Expand All @@ -17,4 +17,4 @@ WORKDIR /home/buildbot
RUN curl -o miniconda.sh "http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh" && chmod +x miniconda.sh && ./miniconda.sh -b && rm miniconda.sh && echo "export PATH=/home/buildbot/miniconda3/bin:/home/buildbot/miniconda2/bin:$PATH" >> /home/buildbot/.bash_profile
ENV PATH /home/buildbot/miniconda3/bin:/home/buildbot/miniconda2/bin:$PATH
# Add the miniconda environments for the Python builds
RUN conda install conda-build && conda create -n CoolProp27 python=2.7 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && conda create -n CoolProp33 python=3.3 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && conda create -n CoolProp34 python=3.4 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && conda clean -yilts
RUN conda install conda-build && conda create -n CoolProp27 python=2.7 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && conda create -n CoolProp33 python=3.3 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && conda create -n CoolProp34 python=3.4 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && conda create -n CoolProp35 python=3.5 cython pip requests jinja2 pyyaml pycrypto numpy scipy matplotlib pandas wheel && conda clean -yilts

0 comments on commit 4ffdf7c

Please sign in to comment.