nixshare/Dockerfile

21 lines
319 B
Docker

# syntax=docker/dockerfile:1
FROM gitrepo.ru/base/go:latest AS go
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN go generate && CGO_ENABLED=0 GOOS=linux go build -o nixshare
FROM scratch
WORKDIR /app
COPY --from=go /app/nixshare ./nixshare
COPY --from=go /app/html ./html
EXPOSE 8000
CMD ["./nixshare"]