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.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			470 B
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			470 B
		
	
	
	
		
			Docker
		
	
FROM keybaseio/client:5.7.0-20210126121847-cfdcb9f95f-python-slim
 | 
						|
LABEL maintainer="Drew Bednar <drew@runcible.io>"
 | 
						|
 | 
						|
# Set the working dir
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
# Copy over requirements
 | 
						|
COPY requirements.txt /app
 | 
						|
 | 
						|
# Install any needed dependencies
 | 
						|
RUN pip install --trusted-host pypi.python.org -r requirements.txt
 | 
						|
 | 
						|
# Copy over the code now
 | 
						|
COPY metabot/ /app
 | 
						|
RUN chown -R keybase:keybase /app
 | 
						|
 | 
						|
# Run notifications when the container launches
 | 
						|
CMD ["python3", "notifications.py"] |