Files
action-telegram-notify/Dockerfile
2024-09-09 14:09:48 +03:00

9 lines
214 B
Docker

FROM golang:1.22 AS builder
WORKDIR /app
COPY . /app
RUN CGO_ENABLED=0 go build -v -o telegram-notify .
FROM alpine:latest
COPY --from=builder /app/telegram-notify /telegram-notify
ENTRYPOINT ["/telegram-notify"]