From 06a46c12c796e7306b8f87c4a2e72576647dcc43 Mon Sep 17 00:00:00 2001 From: Davide Alberani Date: Thu, 5 Dec 2024 21:34:05 +0100 Subject: [PATCH] update Dockerfile --- README.md | 2 +- mastodon-bot/Dockerfile | 4 ++-- telegram-bot/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 71f0dbf..0200e33 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Requires https://github.com/jsvine/markovify # License -Copyright 2019-2021 Davide Alberani +Copyright 2019-2021 Davide Alberani Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/mastodon-bot/Dockerfile b/mastodon-bot/Dockerfile index 500f8c0..ce02663 100644 --- a/mastodon-bot/Dockerfile +++ b/mastodon-bot/Dockerfile @@ -1,10 +1,10 @@ FROM alpine LABEL \ - maintainer="Davide Alberani " + maintainer="Davide Alberani " RUN \ apk add --no-cache \ - git python3 && \ + git python3 py3-pip && \ pip3 install Mastodon.py && \ pip3 install markovify && \ cd / && \ diff --git a/telegram-bot/Dockerfile b/telegram-bot/Dockerfile index f198172..455e3a6 100644 --- a/telegram-bot/Dockerfile +++ b/telegram-bot/Dockerfile @@ -1,6 +1,6 @@ FROM alpine LABEL \ - maintainer="Davide Alberani " + maintainer="Davide Alberani " RUN \ apk add --no-cache git python3 py3-cffi py3-six py3-requests py3-cryptography py3-pip && \