1
0
Fork 0
forked from boyska/feedpanel

add dockerfile

This commit is contained in:
boyska 2018-09-30 00:54:03 +02:00
parent e488757455
commit 4bc6c09977

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
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"]