Files
go-ssh-server/Dockerfile
dcorral 28ed749316
Some checks failed
Build, Test and Push Docker Image / e2e-test (push) Failing after 3s
Build, Test and Push Docker Image / build-and-push (push) Has been skipped
Add git
2025-11-06 22:23:14 +01:00

21 lines
353 B
Docker

FROM golang:1.24-alpine AS builder
RUN apk add --no-cache git
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 && mkdir -p /app
COPY --from=builder /app/sshserver /usr/local/bin/sshserver
EXPOSE 22
CMD ["/usr/local/bin/sshserver"]