From 7b0c93cca2b20e66a6699968d64d9ca21783e18e Mon Sep 17 00:00:00 2001 From: Davide Alberani Date: Thu, 5 Dec 2024 21:41:11 +0100 Subject: [PATCH] update Dockerfile --- mastodon-bot/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mastodon-bot/Dockerfile b/mastodon-bot/Dockerfile index ce02663..a21f105 100644 --- a/mastodon-bot/Dockerfile +++ b/mastodon-bot/Dockerfile @@ -3,10 +3,10 @@ LABEL \ maintainer="Davide Alberani " RUN \ - apk add --no-cache \ + apk update && apk add --no-cache \ git python3 py3-pip && \ - pip3 install Mastodon.py && \ - pip3 install markovify && \ + pip3 install --break-system-packages Mastodon.py && \ + pip3 install --break-system-packages markovify && \ cd / && \ git clone https://github.com/alberanid/onthisday.git && \ cd onthisday && \