Skip to content

Commit

Permalink
Merge pull request #705 from bioconda/fix-missing-ssh-in-build-container
Browse files Browse the repository at this point in the history
Fix ssh not being available in build container
  • Loading branch information
mbargull authored Mar 26, 2021
2 parents 68bbf92 + bea7cbb commit af5bdfe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ COPY --from=quay.io/bioconda/base-glibc-busybox-bash /usr/lib/locale/C.UTF-8 /us
# Provide system deps unconditionally until we are able to offer per-recipe installs.
# (Addresses, e.g., "ImportError: libGL.so.1" in tests directly invoked by conda-build.)
# Also install packages that have been installed historically (openssh-client).
RUN yum install -y \
mesa-libGL-devel \
openssh-client \
RUN yum install -y mesa-libGL-devel \
&& \
yum install -y openssh-clients \
&& \
yum clean all && \
rm -rf /var/cache/yum/*
Expand Down

0 comments on commit af5bdfe

Please sign in to comment.