1
0
Fork 0
mirror of https://github.com/Luzifer/mimap.git synced 2024-10-18 04:34:20 +00:00

Pin Python to 3.9 as 3.10 has issues with PIL

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2021-12-02 16:06:33 +01:00
parent 243d339375
commit 0437a0850f
Signed by: luzifer
GPG key ID: 0066F03ED215AD7D

View file

@ -7,7 +7,7 @@ RUN set -ex \
&& apk add --update git \ && apk add --update git \
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" && go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)"
FROM python:3-alpine FROM python:3.9-alpine
LABEL maintainer "Knut Ahlers <knut@ahlers.me>" LABEL maintainer "Knut Ahlers <knut@ahlers.me>"