12 lines
264 B
Docker
12 lines
264 B
Docker
FROM registry.hub.docker.com/library/golang:1.13.6-buster AS BUILD
|
|
|
|
ADD . /app
|
|
|
|
RUN set -o errexit; \
|
|
cd /app || exit 1; \
|
|
go build
|
|
|
|
FROM registry.hub.docker.com/library/golang:1.13.6-buster
|
|
|
|
COPY --from=BUILD /app/gitea-resource /usr/local/bin/gitea-resource
|