Skip to content

Commit 353bebb

Browse files
committed
install git in the testing Docker image
1 parent 65ea840 commit 353bebb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ FROM conda/miniconda3:latest
55
ENV LANG C.UTF-8
66
ENV LC_ALL C.UTF-8
77

8+
# install git
9+
RUN apt-get update && \
10+
apt-get install -y --no-install-recommends git && \
11+
apt-get clean && \
12+
rm -rf /var/lib/apt/lists/*
13+
814
COPY environment.yml test-requirements.txt /
915

1016
RUN conda env update --quiet -n root -f environment.yml

0 commit comments

Comments
 (0)