From 12ef16cbeef97b58a5e660230eaa84ceb80afdbc Mon Sep 17 00:00:00 2001 From: Alexander NeonXP Kiryukhin Date: Thu, 27 Jun 2024 02:20:00 +0300 Subject: first commit --- Dockerfile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..828f625 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +# syntax=docker/dockerfile:1 + +FROM golang:1.22.4 + +WORKDIR /app + +COPY go.mod go.sum ./ +RUN go mod download + +COPY . . + +RUN CGO_ENABLED=0 GOOS=linux go build -o /rss2world + +ENV RSS_URL="https://neonxp.ru/feed.atom" +ENV CHECK_INTERVAL="5m" +ENV SEQ_FILE="/store/seq.txt" +ENV TELEGRAM_TOKEN="279146841:AAE9Yd2W........_gAhbO3usM" +ENV TELEGRAM_GROUPS="-1001003209449" + +CMD ["/rss2world"] \ No newline at end of file -- cgit v1.2.3