mirror of
https://github.com/steinhobelgruen/netatmo-exporter.git
synced 2024-11-21 17:03:56 +00:00
Add Dockerfile.
This commit is contained in:
parent
057da436dd
commit
3c618a61d4
30
Dockerfile
Normal file
30
Dockerfile
Normal file
|
@ -0,0 +1,30 @@
|
|||
FROM golang:1 AS builder
|
||||
|
||||
RUN apt-get update && apt-get install -y upx
|
||||
|
||||
ENV PACKAGE=github.com/xperimental/netatmo-exporter
|
||||
|
||||
RUN mkdir -p /go/src/${PACKAGE}
|
||||
WORKDIR /go/src/${PACKAGE}
|
||||
|
||||
ENV LD_FLAGS="-w"
|
||||
ENV CGO_ENABLED=0
|
||||
|
||||
COPY . /go/src/${PACKAGE}
|
||||
RUN echo "-- TEST" \
|
||||
&& go test ./... \
|
||||
&& echo "-- BUILD" \
|
||||
&& go install -tags netgo -ldflags "${LD_FLAGS}" . \
|
||||
&& echo "-- PACK" \
|
||||
&& upx -9 /go/bin/netatmo-exporter
|
||||
|
||||
FROM busybox
|
||||
LABEL maintainer="Robert Jacob <xperimental@solidproject.de>"
|
||||
|
||||
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||||
COPY --from=builder /go/bin/netatmo-exporter /bin/netatmo-exporter
|
||||
|
||||
USER nobody
|
||||
EXPOSE 9210
|
||||
|
||||
ENTRYPOINT ["/bin/netatmo-exporter"]
|
Loading…
Reference in a new issue