-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
26 lines (21 loc) · 904 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM golang:alpine as builder
LABEL maintainer="Ralf Geschke <ralf@kuerbis.org>"
LABEL last_changed="2022-06-05"
RUN apk update && apk add --no-cache git
# Build dynpower-cli
# Maybe this is a bit unconventional, but it works until I'll find a better way (try go get...)
#RUN mkdir /build-cli && cd /build-cli && git clone https://github.com/geschke/dynpower-cli.git .
#WORKDIR /build-cli
#RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o #dynpower-cli .
# Build invafetch
RUN mkdir /build
ADD . /build/
WORKDIR /build
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o golrackpi ./cmd
# Build minimal image with dynpower and dynpower-cli only
FROM scratch
COPY --from=builder /build/golrackpi /app/
#COPY --from=builder /build-cli/dynpower-cli /app/
ENV PATH "$PATH:/app"
WORKDIR /app
CMD ["./golrackpi"]