* reduce containers into a single one, holding nginx + celery + redis all at once
		
			
				
	
	
		
			23 lines
		
	
	
		
			513 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			513 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.7
 | 
						|
ENV PYTHONUNBUFFERED 1
 | 
						|
 | 
						|
WORKDIR /konova
 | 
						|
 | 
						|
# Install some dependencies
 | 
						|
RUN apt update
 | 
						|
RUN apt install -y gdal-bin redis-server nginx
 | 
						|
 | 
						|
# Copy requirements file into workspace
 | 
						|
COPY ./requirements.txt /konova/
 | 
						|
RUN pip install --upgrade pip
 | 
						|
RUN pip install -r requirements.txt
 | 
						|
 | 
						|
# Copy rest of project into workspace
 | 
						|
RUN rm /etc/nginx/sites-enabled/default
 | 
						|
COPY ./nginx/nginx.conf /etc/nginx/conf.d
 | 
						|
COPY . /konova/
 | 
						|
 | 
						|
# Move static files in designated folder
 | 
						|
RUN python manage.py collectstatic  --noinput
 | 
						|
 |