Skip to content

Commit 197b422

Browse files
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.
1 parent 3801701 commit 197b422

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/Dockerfile.base

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ RUN apk add --no-cache \
1212
bash \
1313
git \
1414
openssl \
15-
openssh-client && \
15+
openssh-client \
16+
tzdata && \
1617
addgroup \
1718
-g 1000 \
1819
coder && \

0 commit comments

Comments
 (0)