Add tzdata to docker image

This commit is contained in:
Chrystian Huot 2020-09-06 13:58:43 -04:00
parent bd7ef12602
commit 5a930db3ec

View file

@ -18,8 +18,8 @@ LABEL maintainer="Chrystian Huot <chrystian.huot@saubeo.solutions>"
WORKDIR /app WORKDIR /app
ENV APP_DATA=/app/data \ ENV APP_DATA=/app/data \
APP_PORT=3000 APP_PORT=3000
RUN apk --no-cache --no-progress add ffmpeg sqlite && \ RUN apk --no-cache --no-progress add ffmpeg sqlite tzdata && \
mkdir -p "${APP_DATA}" mkdir -p "${APP_DATA}"
COPY LICENSE . COPY LICENSE .
COPY --from=client-build /app/client/dist/rdio-scanner/. client/. COPY --from=client-build /app/client/dist/rdio-scanner/. client/.
COPY --from=server-build /app/server/node_modules/. server/node_modules/. COPY --from=server-build /app/server/node_modules/. server/node_modules/.