mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-23 03:00:17 -04:00
Moved dockerfile to new directory
This commit is contained in:
33
dev/docker/slavepython/Dockerfile
Normal file
33
dev/docker/slavepython/Dockerfile
Normal file
@@ -0,0 +1,33 @@
|
||||
# 2015-10-11 13:42 CAUTION: This file is automatically generated from Dockerfile.slave.python.tpl, do not edit it manually.
|
||||
# Set the base image to Debian
|
||||
FROM coolprop/slavebase
|
||||
# File Author / Maintainer
|
||||
MAINTAINER Jorrit Wronski (jowr@ipu.dk)
|
||||
#
|
||||
#
|
||||
USER buildbot
|
||||
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/miniconda/bin:$PATH" >> /home/buildbot/.bash_profile
|
||||
#
|
||||
env PATH /home/buildbot/miniconda3/bin:/home/buildbot/miniconda/bin:$PATH
|
||||
#
|
||||
RUN \
|
||||
conda create -n CoolProp27 python=2.7 cython pip jinja2 pyyaml pycrypto numpy scipy matplotlib pandas && \
|
||||
conda create -n CoolProp33 python=3.3 cython pip jinja2 pyyaml pycrypto numpy scipy matplotlib pandas && \
|
||||
conda create -n CoolProp34 python=3.4 cython pip jinja2 pyyaml pycrypto numpy scipy matplotlib pandas && \
|
||||
conda clean -yilts
|
||||
#
|
||||
#RUN \
|
||||
#source activate CoolProp27 && \
|
||||
#pip install wheel && \
|
||||
#source deactivate && \
|
||||
#source activate CoolProp33 && \
|
||||
#pip install wheel && \
|
||||
#source deactivate && \
|
||||
#source activate CoolProp34 && \
|
||||
#pip install wheel && \
|
||||
#source deactivate && \
|
||||
#conda clean -yilts
|
||||
Reference in New Issue
Block a user