Browse Source

Update Dockerfile to install apprise

Fixes: #581
master
Pēteris Caune 3 years ago
parent
commit
b77c54f665
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
2 changed files with 2 additions and 1 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -1
      docker/Dockerfile

+ 1
- 0
CHANGELOG.md View File

@ -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)


+ 1
- 1
docker/Dockerfile View File

@ -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


Loading…
Cancel
Save