Skip to content

Commit

Permalink
Merge pull request #7 from ckleemann/dependabot/docker/python-3.10.2-…
Browse files Browse the repository at this point in the history
…alpine3.14

Bump python from 3.10.1-alpine3.14 to 3.10.2-alpine3.14
  • Loading branch information
ckleemann authored Jan 24, 2022
2 parents d897e8c + 315c1fd commit 2b1bc67
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.1-alpine3.14
FROM python:3.10.2-alpine3.14

ARG VCS_REF
ARG VERSION
Expand All @@ -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 2b1bc67

Please sign in to comment.