Adding install for tz info

This commit is contained in:
Finley Ghosh 2025-09-17 21:18:27 +10:00
parent d42089a3e4
commit eecb120a93
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ RUN sqlc generate
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o server cmd/server/main.go RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o server cmd/server/main.go
FROM alpine:latest FROM alpine:latest
RUN apk --no-cache add ca-certificates RUN apk --no-cache add ca-certificates tzdata
WORKDIR /root/ WORKDIR /root/
COPY --from=builder /app/server . COPY --from=builder /app/server .
COPY go-app/templates ./templates COPY go-app/templates ./templates

View file

@ -10,7 +10,7 @@ RUN sqlc generate
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o server cmd/server/main.go RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o server cmd/server/main.go
FROM alpine:latest FROM alpine:latest
RUN apk --no-cache add ca-certificates RUN apk --no-cache add ca-certificates tzdata
WORKDIR /root/ WORKDIR /root/
COPY --from=builder /app/server . COPY --from=builder /app/server .
COPY go-app/templates ./templates COPY go-app/templates ./templates