Skip to content

Commit

Permalink
Add now missing build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ckleemann committed Jan 24, 2022
1 parent b5c9f33 commit 315c1fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ LABEL org.label-schema.schema-version="1.0" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.version=$VERSION \
org.label-schema.build-date=$BUILD_DATE


RUN apk add --no-cache --virtual .build-deps gcc libffi-dev musl-dev

RUN pip install --no-cache-dir --upgrade pip setuptools

COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir --compile -r /tmp/requirements.txt

RUN apk del .build-deps

ENTRYPOINT ["/usr/local/bin/pyup"]

0 comments on commit 315c1fd

Please sign in to comment.