You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							304 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							18 lines
						
					
					
						
							304 B
						
					
					
				
								FROM alpine:latest
							 | 
						|
								
							 | 
						|
								# Install required packages
							 | 
						|
								RUN apk add --no-cache \
							 | 
						|
								    ca-certificates \
							 | 
						|
								    fuse \
							 | 
						|
								    curl \
							 | 
						|
								    jq
							 | 
						|
								
							 | 
						|
								# Copy our locally built binary
							 | 
						|
								COPY weed-local /usr/bin/weed
							 | 
						|
								RUN chmod +x /usr/bin/weed
							 | 
						|
								
							 | 
						|
								# Create working directory
							 | 
						|
								WORKDIR /data
							 | 
						|
								
							 | 
						|
								# Default command
							 | 
						|
								ENTRYPOINT ["/usr/bin/weed"] 
							 |