From 5a930db3ec8019c8183766a1a182e6d132d9f8f6 Mon Sep 17 00:00:00 2001 From: Chrystian Huot Date: Sun, 6 Sep 2020 13:58:43 -0400 Subject: [PATCH] Add tzdata to docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fe256d1..5584387 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,8 +18,8 @@ LABEL maintainer="Chrystian Huot " WORKDIR /app ENV APP_DATA=/app/data \ APP_PORT=3000 -RUN apk --no-cache --no-progress add ffmpeg sqlite && \ - mkdir -p "${APP_DATA}" +RUN apk --no-cache --no-progress add ffmpeg sqlite tzdata && \ + mkdir -p "${APP_DATA}" COPY LICENSE . COPY --from=client-build /app/client/dist/rdio-scanner/. client/. COPY --from=server-build /app/server/node_modules/. server/node_modules/.