Browse code

removes the GitLab CI file and the Dockerimage that was used there

Bas Nijholt authored on 21/01/2019 15:49:28
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,18 +0,0 @@
1
-# Docker image for testing adaptive
2
-FROM conda/miniconda3:latest
3
-
4
-# make our environment sane
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
17
-RUN conda clean --yes --all
18
-RUN pip install -r test-requirements.txt
Browse code

install git in the testing Docker image

Bas Nijholt authored on 23/11/2018 16:35:20
Showing 1 changed files
... ...
@@ -5,6 +5,12 @@ FROM conda/miniconda3:latest
5 5
 ENV LANG C.UTF-8
6 6
 ENV LC_ALL C.UTF-8
7 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
+
8 14
 COPY environment.yml test-requirements.txt /
9 15
 
10 16
 RUN conda env update --quiet -n root -f environment.yml
Browse code

build the Dockerimage used in CI

Bas Nijholt authored on 23/11/2018 14:04:19
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,12 @@
1
+# Docker image for testing adaptive
2
+FROM conda/miniconda3:latest
3
+
4
+# make our environment sane
5
+ENV LANG C.UTF-8
6
+ENV LC_ALL C.UTF-8
7
+
8
+COPY environment.yml test-requirements.txt /
9
+
10
+RUN conda env update --quiet -n root -f environment.yml
11
+RUN conda clean --yes --all
12
+RUN pip install -r test-requirements.txt