diff --git a/skipper-go/Dockerfile b/skipper-go/Dockerfile new file mode 100644 index 0000000..7023733 --- /dev/null +++ b/skipper-go/Dockerfile @@ -0,0 +1,11 @@ +FROM golang:1.20-alpine +WORKDIR /app + +COPY go.mod ./ +COPY go.sum ./ +RUN go mod download + +COPY . ./ +RUN go build -o backrunner +# you must add to ENTRYPOINT "--config=", "--multihop=", "--key=" +ENTRYPOINT ["/app/backrunner", "start"] \ No newline at end of file