Skip to content

Commit

Permalink
Merge pull request #2191 from FabianKramm/tzdata
Browse files Browse the repository at this point in the history
fix: add tzdata to Dockerfile
  • Loading branch information
FabianKramm authored Oct 1, 2024
2 parents 3b1a143 + 0683fcb commit 23f9cd6
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 --no-cache 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 --no-cache ca-certificates zstd tzdata

# Set root path as working directory
WORKDIR /

Expand Down

0 comments on commit 23f9cd6

Please sign in to comment.