Skip to content

Commit a68ecb5

Browse files
authored
Merge pull request #240 from broadinstitute/jlc_fix_cloud_build
Update pip in docker build to resolve pandas install issue
2 parents 90db079 + 9c87d90 commit a68ecb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN apt-get -y update && \
2222
apt -y install python3.7 && \
2323
apt -y install python3.7-dev
2424

25-
RUN python3.7 -m pip install pip
25+
RUN python3.7 -m pip install --upgrade pip
2626

2727
# Set cleaner defaults (`alias` fails)
2828
RUN ln -s /usr/bin/python3.7 /usr/bin/python && \
@@ -38,4 +38,4 @@ WORKDIR /scp-ingest-pipeline
3838
RUN python3.7 -m pip install -r requirements.txt
3939

4040
WORKDIR /scp-ingest-pipeline/ingest
41-
CMD ["python", "ingest_pipeline.py", "--help"]
41+
CMD ["python", "ingest_pipeline.py", "--help"]

0 commit comments

Comments
 (0)