From 3feaa4e8575cb4c75a1047619ec8586c8255dd33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20de=20Vasconcelos?= Date: Fri, 29 Dec 2023 01:06:55 +0000 Subject: [PATCH] Add coreutils to image --- tileupdater/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tileupdater/Dockerfile b/tileupdater/Dockerfile index 7cb024f..464a9e1 100644 --- a/tileupdater/Dockerfile +++ b/tileupdater/Dockerfile @@ -1,5 +1,7 @@ FROM alpine +RUN apk add --update coreutils && rm -rf /var/cache/apk/* + WORKDIR /app COPY . .