Files
go-ssh-server/Dockerfile
dcorral d9df32f7cf
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 26s
Add post-quantum support
2025-11-06 16:21:54 +01:00

19 lines
308 B
Docker

FROM golang:1.24-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY main.go ./
RUN go build -o sshserver main.go
FROM alpine:latest
RUN apk add --no-cache ca-certificates
COPY --from=builder /app/sshserver /usr/local/bin/sshserver
EXPOSE 22
CMD ["/usr/local/bin/sshserver"]