From 9377a71dcac52b979545b0fe9b152ed80ed29a68 Mon Sep 17 00:00:00 2001 From: Julian <374571+l00ptr@users.noreply.github.com> Date: Fri, 9 Jun 2023 10:59:18 +0200 Subject: [PATCH] Update Dockerfile to use latest version of Alpine That way we can functionality from python 3.11 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 656a7c2..f445729 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \