fork
Configure Feed
Select the types of activity you want to include in your feed.
Openstatus
www.openstatus.dev
fork
Configure Feed
Select the types of activity you want to include in your feed.
1ARG GO_VERSION=1
2FROM golang:1.25.1-alpine as builder
3
4WORKDIR /usr/src/app
5COPY go.mod go.sum ./
6RUN go mod download && go mod verify
7COPY . .
8RUN go build -v -o /ssh-status-server .
9
10
11FROM debian:bookworm
12
13COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
14COPY --from=builder /ssh-status-server /app/ssh-status-server
15
16CMD ["/app/ssh-status-server"]