Skip to content
Snippets Groups Projects
Commit 195144ca authored by Erin (Josh) Rigler's avatar Erin (Josh) Rigler
Browse files

Merge branch 'fix-docker-pip-install-eager' into 'master'

Force pip to do eager install of wheels

See merge request !203
parents 7fe5eb97 8e988307
No related branches found
No related tags found
1 merge request!203Force pip to do eager install of wheels
Pipeline #202451 passed
......@@ -33,7 +33,7 @@ COPY --from=build /app/dist/*.whl /app/docker-entrypoint.sh /app/
USER root
RUN apt update \
&& apt upgrade -y \
&& pip install /app/*.whl \
&& pip install --upgrade --upgrade-strategy eager /app/*.whl \
&& pip cache purge
USER usgs-user
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment