From 4d89a08fd773af88bb2644d99516fe484b8a85a3 Mon Sep 17 00:00:00 2001 From: dylanmpeck Date: Thu, 4 Feb 2021 13:01:38 -0800 Subject: [PATCH] upgrade dumb-init version in container dockerfile dumb-init is pinned to a version that is no longer compatible with the version of alpine linux that's being fetched --- container/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container/Dockerfile b/container/Dockerfile index 20676d4..9af3441 100644 --- a/container/Dockerfile +++ b/container/Dockerfile @@ -31,7 +31,7 @@ COPY prime-flask-server.py requirements.txt /opt/ RUN adduser -D apprunner && \ apk add --no-cache \ - dumb-init=1.2.2-r1 && \ + dumb-init=1.2.5-r0 && \ pip3 install -r /opt/requirements.txt && \ chown -R apprunner:apprunner /opt/