fix(cmd): add fallback tz information (#526)

* fix(cmd): add fallback tz information

* build(docker): add tzdata pkg
This commit is contained in:
Kyle Sanderson 2022-11-10 01:20:54 -08:00 committed by GitHub
parent b7c9674a01
commit 490d85d220
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View file

@ -14,7 +14,7 @@ ARG VERSION=dev
ARG REVISION=dev
ARG BUILDTIME
RUN apk add --no-cache git make build-base
RUN apk add --no-cache git make build-base tzdata
ENV SERVICE=autobrr
@ -43,7 +43,7 @@ ENV HOME="/config" \
XDG_CONFIG_HOME="/config" \
XDG_DATA_HOME="/config"
RUN apk --no-cache add ca-certificates curl
RUN apk --no-cache add ca-certificates curl tzdata
WORKDIR /app