ADD tz data
All checks were successful
${{ github.actor }} executed Build Push Prod / build (push) Successful in 4m23s
${{ github.actor }} executed Build Push Prod / deploy (push) Successful in 23s

This commit is contained in:
maximo tejeda 2024-12-04 23:21:42 -04:00
parent 895043c55c
commit c81483a3c4

View File

@ -14,4 +14,8 @@ RUN go build -o bin/tgbuser \
FROM alpine AS runner FROM alpine AS runner
COPY --from=builder /app/bin/tgbuser /usr/bin/ COPY --from=builder /app/bin/tgbuser /usr/bin/
WORKDIR /app WORKDIR /app
RUN apk --no-cache add --no-check-certificate ca-certificates \
&& update-ca-certificates
RUN apk add --no-cache tzdata
ENTRYPOINT /usr/bin/tgbuser ENTRYPOINT /usr/bin/tgbuser