aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 9a8619e65316c155109ff5d843c90df463a708eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
FROM golang:latest as builder

WORKDIR $GOPATH/src/github.com/zachlatta/sshtron
ADD . .
RUN go get && CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /usr/bin/sshtron .

FROM alpine:latest

COPY --from=builder /usr/bin/sshtron /usr/bin/
RUN apk add --update --no-cache openssh-client && \
	ssh-keygen -t rsa -N "" -f id_rsa
ENTRYPOINT sshtron
Un proyecto texto-plano.xyz