Skip to content

Commit

Permalink
fix: add tzdata to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianKramm committed Oct 1, 2024
1 parent 3b1a143 commit a155a3b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ ENTRYPOINT ["go", "run", "-mod", "vendor", "cmd/vcluster/main.go", "start"]
# we use alpine for easier debugging
FROM alpine:3.20

# install runtime dependencies
RUN apk add -U ca-certificates zstd tzdata

# Set root path as working directory
WORKDIR /

Expand Down
3 changes: 3 additions & 0 deletions Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ RUN curl -s https://get.helm.sh/helm-${HELM_VERSION}-linux-${TARGETARCH}.tar.gz
# we use alpine for easier debugging
FROM alpine:3.20

# install runtime dependencies
RUN apk add -U ca-certificates zstd tzdata

# Set root path as working directory
WORKDIR /

Expand Down

0 comments on commit a155a3b

Please sign in to comment.