From b77c54f6655a29f648576e5d5fff341d00576c04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Caune?= Date: Mon, 25 Oct 2021 21:55:11 +0300 Subject: [PATCH] Update Dockerfile to install apprise Fixes: #581 --- CHANGELOG.md | 1 + docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a45b857..117ee0bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. - Switch from croniter to cronsim (vendored in hc.lib.cronsim) - Change outgoing webhook timeout to 10s, but cap the total time to 20s - Implement automatic `api_ping` and `api_notification` pruning (#556) +- Update Dockerfile to install apprise (#581) ### Bug Fixes - Fix hc.api.views.ping to handle non-utf8 data in request body (#574) diff --git a/docker/Dockerfile b/docker/Dockerfile index 459b8677..4d8c8c64 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,7 +8,7 @@ RUN \ printf "[global]\nextra-index-url=https://www.piwheels.org/simple\n" > /etc/pip.conf ; \ fi RUN pip wheel --wheel-dir /wheels -r /tmp/requirements.txt -RUN rm -f /etc/pip.conf && pip wheel --wheel-dir /wheels uwsgi +RUN rm -f /etc/pip.conf && pip wheel --wheel-dir /wheels apprise uwsgi FROM python:3.9-slim-buster