Files
go-rpi-rgb-led-matrix/Dockerfile
nathan cb929d7a28
Some checks failed
rgbarmlib64/pipeline/head There was a failure building this commit
Update 'Dockerfile'
2023-01-15 02:49:06 +00:00

16 lines
444 B
Docker

#FROM golang:1.18.3-buster as builder
FROM golang:alpine
WORKDIR /usr/src/app
COPY . .
#RUN apt-get install -y git
RUN apk add git
RUN go mod tidy -e
RUN go mod vendor
WORKDIR /usr/src/app/vendor/rpi-rgb-led-matrix/
RUN git submodule update --init
RUN make
WORKDIR /usr/src/app
RUN go install -v ./...
RUN cp /usr/src/app/vendor/rpi-rgb-led-matrix/include/* /usr/local/include
RUN cp /usr/src/app/vendor/rpi-rgb-led-matrix/lib/* /usr/local/lib