Last active 20 hours ago

irc

Revision a481a50b47d513f146b274d6dccadca48aa65ee0

Dockerfile Raw
1FROM golang:1.24-alpine AS build
2
3RUN apk update && apk add --no-cache git make build-base
4
5WORKDIR /nagjo
6
7RUN git clone https://codeberg.org/emersion/nagjo.git .
8
9RUN go build
10
11FROM alpine:latest
12
13COPY --from=build /nagjo/nagjo /usr/bin/nagjo
14
15CMD ["/usr/bin/nagjo", "-config", "/etc/nagjo/config.scfg" ]