This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
feedpanel/Dockerfile
2018-09-30 00:54:03 +02:00

10 lines
304 B
Docker

FROM golang:1.11-alpine as builder
RUN apk --no-cache add git gcc musl-dev
WORKDIR /panel/
COPY ./ /panel/
RUN rm -rf /panel/vendor/ && go get ./... && CGO_ENABLED=0 GOOS=linux go install -v ./...
FROM scratch
WORKDIR /usr/bin/
COPY --from=builder /go/bin/panelcli /usr/bin/
ENTRYPOINT ["./panelcli"]