Files
go-rpi-rgb-led-matrix/Dockerfile
nathan wagner a9bdf22e57 just pushing
2022-07-08 16:07:11 -04:00

11 lines
218 B
Docker

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 ./...