From 84152b1c2815b5afc9a366636bc94f8d1b08bc90 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Tue, 9 Nov 2021 01:41:47 +0200 Subject: [PATCH] Install pip in standalone dockerfile --- maubot/standalone/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/maubot/standalone/Dockerfile b/maubot/standalone/Dockerfile index 7456e8b..ebe156a 100644 --- a/maubot/standalone/Dockerfile +++ b/maubot/standalone/Dockerfile @@ -1,6 +1,7 @@ FROM docker.io/alpine:3.14 RUN apk add --no-cache \ + python3 py3-pip py3-setuptools py3-wheel \ py3-aiohttp \ py3-sqlalchemy \ py3-attrs \