10 lines
		
	
	
		
			139 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			139 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM golang:1.22.5
 | |
| 
 | |
| WORKDIR /app
 | |
| COPY ./ ./
 | |
| RUN go mod download
 | |
| 
 | |
| 
 | |
| RUN CGO_ENABLED=0 GOOS=linux go build -o /modem-test
 | |
| 
 | |
| CMD ["/modem-test"] |