From e3f508c72abbb6da5fbf5db15809ffcb57961ab1 Mon Sep 17 00:00:00 2001 From: Pierre Fernique Date: Fri, 19 Aug 2016 14:26:22 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 518ed89f..c0e95f90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,11 @@ FROM statiskit/ubuntu:trusty # Clone the repository RUN git clone https://github.com/StatisKit/AutoWIG.git $HOME/AutoWIG +RUN git -C $HOME/AutoWIG pull +RUN more $HOME/AutoWIG/conda/python-autowig/meta.yaml # Build recipes -RUN $HOME/miniconda/bin/conda build $HOME/AutoWIG/conda/python-clang -c statiskit +RUN $HOME/miniconda/bin/conda build $HOME/AutoWIG/conda/python-clang -c statiskit -c conda-forge RUN $HOME/miniconda/bin/conda build $HOME/AutoWIG/conda/python-autowig -c statiskit -c conda-forge # Create a file for anaconda upload @@ -13,5 +15,4 @@ RUN echo "$HOME/miniconda/bin/anaconda upload `conda build $HOME/AutoWIG/conda/p RUN echo "$HOME/miniconda/bin/anaconda upload `conda build $HOME/AutoWIG/conda/python-autowig --output` --user statiskit --force" >> $HOME/upload.sh # Install packages -RUN $HOME/miniconda/bin/conda install python-clang -c statiskit --use-local RUN $HOME/miniconda/bin/conda install python-autowig -c statiskit -c conda-forge --use-local \ No newline at end of file