mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 03:43:02 +00:00
Python 3.11 is faster
This commit is contained in:
parent
c2750f9de1
commit
4486c8e0b2
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM python:3.10-alpine as build
|
FROM python:3.11-alpine as build
|
||||||
WORKDIR /wheels
|
WORKDIR /wheels
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
g++ \
|
g++ \
|
||||||
|
@ -12,7 +12,7 @@ COPY requirements.txt /opt/sherlock/
|
||||||
RUN pip3 wheel -r /opt/sherlock/requirements.txt
|
RUN pip3 wheel -r /opt/sherlock/requirements.txt
|
||||||
|
|
||||||
|
|
||||||
FROM python:3.10-alpine
|
FROM python:3.11-alpine
|
||||||
WORKDIR /opt/sherlock
|
WORKDIR /opt/sherlock
|
||||||
ARG VCS_REF
|
ARG VCS_REF
|
||||||
ARG VCS_URL="https://github.com/sherlock-project/sherlock"
|
ARG VCS_URL="https://github.com/sherlock-project/sherlock"
|
||||||
|
|
Loading…
Reference in a new issue