We have a Docker image (below) that we are using for drone with Enterprise features, as we meet the requirements to use it for free.
Are you happy for us to put this image on a public repository? (say, Docker Hub)?
FROM golang:1.11.13
# See https://github.com/drone/drone/blob/master/BUILDING for general build instructions
# and http://discuss.harness.io/t/licensing-and-subscription-faq/3839 for the required tag
# to enable enterprise mode
# Enable Go Modules
ENV GO111MODULE=on
RUN git clone https://github.com/drone/drone
WORKDIR ./drone
RUN go install github.com/drone/drone/cmd/drone-agent
RUN go install github.com/drone/drone/cmd/drone-controller
RUN go install -tags nolimit github.com/drone/drone/cmd/drone-server
EXPOSE 8080
ENTRYPOINT drone-server
Many thanks