diff --git a/Dockerfile b/Dockerfile index 4a65dee..c500e42 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Dockerfile for urlwatch # -FROM alpine:3 +FROM alpine:3.18 MAINTAINER EasyPi Software Foundation ARG URLWATCH_VERSION @@ -46,6 +46,7 @@ RUN set -xe \ pytz \ pyyaml \ requests \ + && sed -i '/if "proxies" not in kwargs:$/s//if True:/' /usr/lib/python3.11/site-packages/requests/sessions.py \ && pip3 install urlwatch==${URLWATCH_VERSION} \ && apk del build-base \ libffi-dev \