chore: add tzdata to dockerfile base (#20553)

When deploying Coder using the ghcr.io/coder/coder image, it is not
possible to set the "timezone" field in a preset with an embedded
provisioner. This is due to the container image not having the IANA time
zone database installed, which causes an issue when the terraform
provider attempts to validate the given timezone is valid.
This commit is contained in:
Danielle Maywood
2025-10-30 14:08:06 +00:00
committed by GitHub
parent 38017010ce
commit 197b422a31
+2 -1
View File
@@ -12,7 +12,8 @@ RUN apk add --no-cache \
bash \
git \
openssl \
openssh-client && \
openssh-client \
tzdata && \
addgroup \
-g 1000 \
coder && \