mirror of
				https://github.com/DarkflameUniverse/DarkflameServer.git
				synced 2025-11-04 06:32:00 +00:00 
			
		
		
		
	* Add curl to brickfix dockerfile. * Add curl to AccountManager docker. * Fix issue preventing container from building.
		
			
				
	
	
		
			8 lines
		
	
	
		
			162 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			162 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
# syntax=docker/dockerfile:1
 | 
						|
FROM python:3.9.9-slim
 | 
						|
RUN apt-get update && \
 | 
						|
    apt-get install curl -y
 | 
						|
WORKDIR /empty_dir
 | 
						|
EXPOSE 80
 | 
						|
CMD python -m http.server 80
 |