Skip to content

Commit f8158a2

Browse files
Create Dockerfile
1 parent 8f19c4b commit f8158a2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM continuumio/miniconda3:latest
2+
3+
WORKDIR /app
4+
# the CombinedCA.cer stuff will go away with artifactory
5+
ADD requirements.txt CombinedCA.cer* /app/
6+
RUN if [ -f ./CombinedCA.cer ]; then mkdir -p ~/.pip; printf "[global]\ncert=/app/CombinedCA.cer\n" > ~/.pip/pip.conf; printf "ssl_verify: /app/CombinedCA.cer\n" > ~/.condarc; fi
7+
8+
RUN pip install -r requirements.txt
9+
10+
ADD . /app

0 commit comments

Comments
 (0)