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.
		
		
		
		
		
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			490 B
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			17 lines
		
	
	
		
			490 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 make g++
 | 
						|
RUN go mod tidy -e
 | 
						|
RUN go mod vendor
 | 
						|
RUN mkdir -p /usr/local/include
 | 
						|
WORKDIR /usr/src/app/depends/rpi-rgb-led-matrix/
 | 
						|
#RUN git submodule update --init
 | 
						|
RUN make
 | 
						|
WORKDIR /usr/src/app
 | 
						|
#RUN go install -v ./...
 | 
						|
RUN cp /usr/src/app/depends/rpi-rgb-led-matrix/include/* /usr/local/include
 | 
						|
RUN cp /usr/src/app/depends/rpi-rgb-led-matrix/lib/* /usr/local/lib
 |