From b8714cc6b9cd0fc484fdcbb4805f51ddd1fb689f Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 6 Aug 2024 18:55:00 +0300 Subject: [PATCH] Also update standalone docker image --- maubot/standalone/Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/maubot/standalone/Dockerfile b/maubot/standalone/Dockerfile index 2db8426..8cfa8cd 100644 --- a/maubot/standalone/Dockerfile +++ b/maubot/standalone/Dockerfile @@ -1,9 +1,8 @@ -FROM docker.io/alpine:3.18 +FROM docker.io/alpine:3.20 RUN apk add --no-cache \ python3 py3-pip py3-setuptools py3-wheel \ py3-aiohttp \ - py3-sqlalchemy \ py3-attrs \ py3-bcrypt \ py3-cffi \ @@ -26,8 +25,8 @@ RUN cd /opt/maubot \ python3-dev \ libffi-dev \ build-base \ - && pip3 install -r requirements.txt -r optional-requirements.txt \ + && pip3 install --break-system-packages -r requirements.txt -r optional-requirements.txt \ && apk del .build-deps COPY . /opt/maubot -RUN cd /opt/maubot && pip3 install . +RUN cd /opt/maubot && pip3 install --break-system-packages .