Skip to content

Commit

Permalink
update Miniconda update
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening committed Feb 27, 2019
1 parent 12ddb1a commit 68c7a86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions compose/galaxy-init/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ WORKDIR $GALAXY_ROOT
#RUN export GALAXY=$GALAXY_ROOT && sh ./cron/updateucsc.sh.sample


RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda2-4.5.11-Linux-x86_64.sh -O ~/miniconda.sh && \
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda2-4.5.12-Linux-x86_64.sh -O ~/miniconda.sh && \
/bin/bash ~/miniconda.sh -b -p /tool_deps/_conda/ && \
rm ~/miniconda.sh && \
echo ". /tool_deps/_conda/etc/profile.d/conda.sh" >> ~/.bashrc && \
Expand All @@ -96,7 +96,7 @@ RUN export PATH=/tool_deps/_conda/bin/:$PATH && \
cd $GALAXY_ROOT/client && yarn install --network-timeout 120000 --check-files && yarn run build-production-maps && \
rm -rf /home/galaxy/.cache/ && \
# change the default location of shed_tools to be ../shed_tools
sed -i 's|database|..|' $GALAXY_CONFIG_DIR/shed_tool_conf.xml
sed -i 's|database|..|' $GALAXY_ROOT/config/shed_tool_conf.xml

# Switch back to User root
USER root
Expand Down
4 changes: 2 additions & 2 deletions galaxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ ADD ./bashrc $GALAXY_HOME/.bashrc

# Install miniconda, then virtualenv from conda and then
# download latest stable release of Galaxy.
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda2-4.5.11-Linux-x86_64.sh -O ~/miniconda.sh && \
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda2-4.5.12-Linux-x86_64.sh -O ~/miniconda.sh && \
/bin/bash ~/miniconda.sh -b -p /tool_deps/_conda/ && \
rm ~/miniconda.sh && \
ln -s /tool_deps/_conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
Expand Down Expand Up @@ -208,7 +208,7 @@ RUN ./scripts/common_startup.sh && \
npm install && \
rm -rf ~/.cache/ /galaxy-central/client/node_modules/ && \
# change the default location of shed_tools to be ../shed_tools
sed -i 's|database|..|' $GALAXY_CONFIG_DIR/shed_tool_conf.xml
sed -i 's|database|..|' $GALAXY_ROOT/config/shed_tool_conf.xml

# Switch back to User root
USER root
Expand Down

0 comments on commit 68c7a86

Please sign in to comment.