Dockerfile: Upgrade Python

This commit is contained in:
Christian Clauss 2022-07-07 13:19:09 +02:00 committed by GitHub
parent a4c0fb05aa
commit c2750f9de1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
FROM python:3.7-alpine as build
FROM python:3.10-alpine as build
WORKDIR /wheels
RUN apk add --no-cache \
g++ \
@ -12,7 +12,7 @@ COPY requirements.txt /opt/sherlock/
RUN pip3 wheel -r /opt/sherlock/requirements.txt
FROM python:3.7-alpine
FROM python:3.10-alpine
WORKDIR /opt/sherlock
ARG VCS_REF
ARG VCS_URL="https://github.com/sherlock-project/sherlock"