aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 7 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 9a8619e..f6fb13c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,12 +1,15 @@
-FROM golang:latest as builder
+ARG BASE_IMAGE=golang:latest
+FROM $BASE_IMAGE 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 .
+# CGO_ENABLED=0 is here to fix this issue:
+# https://stackoverflow.com/questions/34729748/installed-go-binary-not-found-in-path-on-alpine-linux-docker
+RUN go get && CGO_ENABLED=0 go build -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
+RUN apk add --update openssh-client && \
+ ssh-keygen -t rsa -N "" -f id_rsa
ENTRYPOINT sshtron
Un proyecto texto-plano.xyz