You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
218 B
Docker
11 lines
218 B
Docker
2 years ago
|
FROM golang:1.18.3-buster
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
COPY . .
|
||
|
RUN apt-get install -y git
|
||
|
WORKDIR /usr/src/app/vendor/rpi-rgb-led-matrix/
|
||
|
RUN git submodule update --init
|
||
|
RUN make
|
||
|
WORKDIR /usr/src/app
|
||
|
RUN go install -v ./...
|