Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dockerfile edits to make it run #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
ARG BASE_IMAGE=golang:latest
FROM $BASE_IMAGE as builder

WORKDIR $GOPATH/src/github.com/zachlatta/sshtron
ADD . .
WORKDIR $GOPATH/
RUN git clone https://github.com/zachlatta/sshtron.git
RUN ls /go/
WORKDIR $GOPATH/sshtron
RUN ls

#ADD . .
# 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 git init
RUN go mod init github.com/zachlatta/sshtron

RUN go get && CGO_ENABLED=0 go build -o /usr/bin/sshtron .

FROM alpine:latest
Expand Down