From 13c9244e3fa015cb641667db7e75d09cfd32445e Mon Sep 17 00:00:00 2001 From: LouisLam Date: Sun, 18 Jul 2021 17:42:00 +0800 Subject: [PATCH] fix apprise import issue and loose the healthcheck rule --- dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 923d8b10..9d810414 100644 --- a/dockerfile +++ b/dockerfile @@ -17,11 +17,15 @@ RUN apk add --no-cache --virtual .build-deps make g++ python3 python3-dev && \ # Compilation Fail 3 => Google Search "alpine opensslv.h" => Add openssl-dev # Compilation Fail 4 => Google Search "alpine opensslv.h" again => Change to libressl-dev musl-dev # Compilation Fail 5 => Google Search "ERROR: libressl3.3-libtls-3.3.3-r0: trying to overwrite usr/lib/libtls.so.20 owned by libretls-3.3.3-r0." again => Change back to openssl-dev with musl-dev +# Runtime Error => ModuleNotFoundError: No module named 'six' => pip3 install six +# Runtime Error 2 => ModuleNotFoundError: No module named 'six' => apk add py3-six ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1 RUN apk add --no-cache python3 RUN apk add --no-cache --virtual .build-deps libffi-dev musl-dev openssl-dev cargo py3-pip python3-dev && \ pip3 install apprise && \ apk del .build-deps +RUN apk add --no-cache py3-six +RUN apprise --version # New things add here @@ -31,7 +35,7 @@ RUN npm run build EXPOSE 3001 VOLUME ["/app/data"] -HEALTHCHECK --interval=5s --timeout=3s --start-period=30s CMD node extra/healthcheck.js +HEALTHCHECK --interval=60s --timeout=30s --start-period=300s CMD node extra/healthcheck.js CMD ["npm", "run", "start-server"] FROM release AS nightly