mirror of
https://github.com/Luzifer/mercedes-byocar-exporter.git
synced 2024-11-08 22:10:07 +00:00
32 lines
661 B
Text
32 lines
661 B
Text
|
FROM golang:alpine as builder
|
||
|
|
||
|
COPY . /src/mercedes-byocar-exporter
|
||
|
WORKDIR /src/mercedes-byocar-exporter
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& apk add --update \
|
||
|
build-base \
|
||
|
git \
|
||
|
&& go install \
|
||
|
-ldflags "-X main.version=$(git describe --tags --always || echo dev)" \
|
||
|
-mod=readonly \
|
||
|
-modcacherw \
|
||
|
-trimpath
|
||
|
|
||
|
FROM alpine:latest
|
||
|
|
||
|
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& apk --no-cache add \
|
||
|
ca-certificates
|
||
|
|
||
|
COPY --from=builder /go/bin/mercedes-byocar-exporter /usr/local/bin/mercedes-byocar-exporter
|
||
|
|
||
|
EXPOSE 3000
|
||
|
|
||
|
ENTRYPOINT ["/usr/local/bin/mercedes-byocar-exporter"]
|
||
|
CMD ["--"]
|
||
|
|
||
|
# vim: set ft=Dockerfile:
|