Merge pull request #1399 from cclauss/patch-8

Dockerfile: Upgrade Python
This commit is contained in:
Sondre
2023-03-29 10:25:16 +02:00
committed by GitHub
+2 -2
View File
@@ -1,4 +1,4 @@
FROM python:3.7-slim-bullseye as build
FROM python:3.11-slim-bullseye as build
WORKDIR /wheels
COPY requirements.txt /opt/sherlock/
@@ -6,7 +6,7 @@ RUN apt-get update \
&& apt-get install -y build-essential \
&& pip3 wheel -r /opt/sherlock/requirements.txt
FROM python:3.7-slim-bullseye
FROM python:3.11-slim-bullseye
WORKDIR /opt/sherlock
ARG VCS_REF