From ce986e8d1dd9bb1b7648b14bcc702ed4683b6c6a Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Wed, 12 May 2021 19:06:41 -0700 Subject: [PATCH] Roll back to alpine:3.12 Looks like there is a clock issue with raspbian https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.13.0#time64_requirements --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4dbbb8a..df292ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ ARG REPO=library -FROM ${REPO}/alpine:3.13 +FROM ${REPO}/alpine:3.12 RUN mkdir /app WORKDIR /app/ # Add common checking tools -RUN apk --no-cache add bash=~5.1.0 curl=~7.76.1 jq=~1.6 +RUN apk --no-cache add bash=~5.0 curl=~7.76 jq=~1.6 # Add minitor user for running as non-root RUN addgroup -S minitor && adduser -S minitor -G minitor