From 4486c8e0b2db4747cd84e9c8c6a31c888718820f Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 13 Mar 2023 11:49:29 +0100 Subject: [PATCH] Python 3.11 is faster --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 96b847a1..a457dc5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine as build +FROM python:3.11-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.10-alpine +FROM python:3.11-alpine WORKDIR /opt/sherlock ARG VCS_REF ARG VCS_URL="https://github.com/sherlock-project/sherlock"