github.com/mentimeter/morty@v1.2.2-0.20221012065510-5596adecd154/Dockerfile (about) 1 # Specify the version of Go to use 2 FROM golang:1.16-alpine 3 4 # Copy all the files from the host into the container 5 WORKDIR /src 6 COPY . . 7 8 # Compile the action 9 RUN go build -o /bin/action 10 11 ENTRYPOINT ["/bin/action"]