Skip to content

Commit

Permalink
update pip tools due to pypa/pip#10726
Browse files Browse the repository at this point in the history
  • Loading branch information
richarms committed Mar 16, 2022
1 parent b0e0c59 commit cd42bfa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Expand Up @@ -13,14 +13,17 @@ ENV PATH="$PATH_PYTHON3" VIRTUAL_ENV="$VIRTUAL_ENV_PYTHON3"
# Install dependencies
COPY --chown=kat:kat requirements.txt /tmp/install/requirements.txt
RUN pip install --upgrade pip && \
pip install --upgrade pip-tools && \
install_pinned.py -r /tmp/install/requirements.txt

RUN pip install katversion

# Install the current package
COPY --chown=kat:kat . /tmp/install/katsdpcontimh
WORKDIR /tmp/install/katsdpcontimh
RUN python ./setup.py clean
RUN pip install --no-deps .
#RUN pip check
RUN pip check

#######################################################################

Expand Down

0 comments on commit cd42bfa

Please sign in to comment.