fix: ensure tzdata is included in builds

This commit is contained in:
Marc 2024-09-21 15:23:00 -04:00
parent b028cc1c6d
commit 1dd0f6b735
Signed by: marc
GPG key ID: 048E042F22B5DC79

View file

@ -5,7 +5,7 @@ WORKDIR /build
COPY *.go .
COPY go.mod .
RUN go build -ldflags "-s -w" -o /tmp/rss
RUN go build -tags timetzdata -ldflags "-s -w" -o /tmp/rss
FROM alpine:3.20 AS base