mirror of
https://github.com/chapvic/action-telegram-notify.git
synced 2026-01-11 08:51:37 +03:00
Initial commit
This commit is contained in:
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM golang:1.21 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"]
|
||||
Reference in New Issue
Block a user