Update Dockerfile to use latest version of Alpine

That way we can functionality from python 3.11
This commit is contained in:
Julian 2023-06-09 10:59:18 +02:00 committed by GitHub
parent b4e8e5bfbb
commit 9377a71dca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ FROM node:18 AS frontend-builder
COPY ./maubot/management/frontend /frontend
RUN cd /frontend && yarn --prod && yarn build
FROM alpine:3.17
FROM alpine:3.18
RUN apk add --no-cache \
python3 py3-pip py3-setuptools py3-wheel \