We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65ea840 commit 353bebbCopy full SHA for 353bebb
Dockerfile
@@ -5,6 +5,12 @@ FROM conda/miniconda3:latest
5
ENV LANG C.UTF-8
6
ENV LC_ALL C.UTF-8
7
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
+
14
COPY environment.yml test-requirements.txt /
15
16
RUN conda env update --quiet -n root -f environment.yml
0 commit comments