Skip to content

Commit bea7cbb

Browse files
committed
Fix ssh not being available in build container
1 parent 68bbf92 commit bea7cbb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ COPY --from=quay.io/bioconda/base-glibc-busybox-bash /usr/lib/locale/C.UTF-8 /us
66
# Provide system deps unconditionally until we are able to offer per-recipe installs.
77
# (Addresses, e.g., "ImportError: libGL.so.1" in tests directly invoked by conda-build.)
88
# Also install packages that have been installed historically (openssh-client).
9-
RUN yum install -y \
10-
mesa-libGL-devel \
11-
openssh-client \
9+
RUN yum install -y mesa-libGL-devel \
10+
&& \
11+
yum install -y openssh-clients \
1212
&& \
1313
yum clean all && \
1414
rm -rf /var/cache/yum/*

0 commit comments

Comments
 (0)