Files
gitea-resource/Dockerfile
Alexis Vanier ebbf79ce68 Initial commit
2020-01-11 01:43:50 -05:00

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