Skip to content

Commit

Permalink
Merge pull request #37 from ChameleonCloud/fix_upper_contraints
Browse files Browse the repository at this point in the history
Remove upper constraints from Dockerfile
  • Loading branch information
Mark-Powers authored Jul 15, 2024
2 parents 204a28b + 387fbc6 commit 85f329c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,8 @@ FROM base as release
COPY scripts/chi-requirements.txt /tmp/chi-requirements.txt

ARG openstack_release=xena
RUN curl -L -Sso /upper-constraints.txt "https://raw.githubusercontent.com/openstack/requirements/stable/${openstack_release}/upper-constraints.txt"
# Unconstrained *client to avoid issues with git install
RUN python3 -m pip install --no-cache -r /tmp/chi-requirements.txt -c <(grep -v -E 'pyzmq|packaging|blazarclient|heatclient|zunclient|PyYAML|paramiko' /upper-constraints.txt)
RUN rm -f /tmp/chi-requirements.txt /upper-constraints.txt
RUN python3 -m pip install --no-cache -r /tmp/chi-requirements.txt
RUN rm -f /tmp/chi-requirements.txt

# FIXME(jason): this should not be necessary, it should automatically be enabled on install.
RUN jupyter serverextension enable jupyterlab_chameleon
Expand Down

0 comments on commit 85f329c

Please sign in to comment.