diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..debf7ce --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM golang:latest AS build +WORKDIR /go/src/discord-pocketbot +COPY . . +RUN go get -d -v ./... +RUN CGO_ENABLED=0 GOOS=linux go install -v ./... + +FROM alpine:latest +run apk add --no-cache ca-certificates +WORKDIR /app +COPY --from=build /go/bin/discord-pocketbot discord-pocketbot +CMD ./discord-pocketbot \ No newline at end of file