7 lines
		
	
	
		
			274 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			274 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM mcr.microsoft.com/devcontainers/go:1-1.21-bullseye
 | 
						|
 | 
						|
# Install Magefile from GitHub release
 | 
						|
ARG MAGE_VERSION=1.15.0
 | 
						|
 | 
						|
RUN wget -q https://github.com/magefile/mage/releases/download/v${MAGE_VERSION}/mage_${MAGE_VERSION}_Linux-64bit.tar.gz -O - | tar -xz -C /usr/local/bin
 |