File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 19
19
20
20
# ################# INSTALLATION ######################
21
21
22
- RUN apt-get update && apt-get install wget git
22
+ RUN apt-get update && apt-get install -y wget git
23
23
RUN python -m pip install requests
24
24
RUN python --version
25
25
RUN pip --version
@@ -30,8 +30,8 @@ RUN cd /biocontainers-backend && pip install -r biocontainers/requirements.txt &
30
30
ENV PYTHONPATH /biocontainers-backend
31
31
32
32
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
33
- RUN echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.0 main" | tee /etc/apt/sources.list.d/mongodb.list
34
- RUN apt-get update && apt-get install -y -- allow-unauthenticated mongodb-org-shell
33
+ RUN echo "deb [trusted=yes] http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.0 main" | tee /etc/apt/sources.list.d/mongodb.list
34
+ RUN apt-get --allow-insecure-repositories update && apt-get -- allow-unauthenticated install -y mongodb-org-shell
35
35
36
36
37
37
ADD run.sh /biocontainers-backend/run.sh
Original file line number Diff line number Diff line change 19
19
20
20
# ################# INSTALLATION ######################
21
21
22
- RUN apt-get update && apt-get install wget git
22
+ RUN apt-get update && apt-get install -y wget git
23
23
RUN python -m pip install requests
24
24
RUN python --version
25
25
RUN pip --version
@@ -30,9 +30,10 @@ RUN cd /biocontainers-backend && pip install -r biocontainers/requirements.txt &
30
30
ENV PYTHONPATH /biocontainers-backend
31
31
32
32
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 9DA31620334BD75D9DCB49F368818C72E52529D4
33
- RUN echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.0 main" | tee /etc/apt/sources.list.d/mongodb.list
34
- RUN apt-get update && apt-get install -y --allow-unauthenticated mongodb-org-shell
35
-
33
+ # RUN echo "deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.0 main" | tee /etc/apt/sources.list.d/mongodb.list
34
+ # RUN apt-get update && apt-get install -y --allow-unauthenticated mongodb-org-shell
35
+ RUN echo "deb [trusted=yes] http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.0 main" | tee /etc/apt/sources.list.d/mongodb.list
36
+ RUN apt-get --allow-insecure-repositories update && apt-get --allow-unauthenticated install -y mongodb-org-shell
36
37
37
38
38
39
ADD run.sh /biocontainers-backend/run.sh
You can’t perform that action at this time.
0 commit comments