alskdjaslkdjas

This commit is contained in:
nathan
2022-07-09 19:57:16 -04:00
parent a9bdf22e57
commit bf87ebdb3e
10 changed files with 17 additions and 14 deletions

View File

@@ -1,10 +1,15 @@
FROM golang:1.18.3-buster
FROM golang:1.18.3-buster as builder
WORKDIR /usr/src/app
COPY . .
RUN apt-get install -y 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 ./...
FROM golang:1.18.3-buster
COPY --from=builder /usr/src/app/vendor/rpi-rgb-led-matrix/lib/. /lib