Files
go-ssh-server/Dockerfile

19 lines
325 B
Docker
Raw Normal View History

2025-11-06 16:21:54 +01:00
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
2025-11-06 20:45:03 +01:00
RUN apk add --no-cache ca-certificates && mkdir -p /app
COPY --from=builder /app/sshserver /usr/local/bin/sshserver
EXPOSE 22
CMD ["/usr/local/bin/sshserver"]