37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
FROM python:3.5
 | 
						|
 | 
						|
ENV PYTHONUNBUFFERED 1
 | 
						|
 | 
						|
# Requirements have to be pulled and installed here, otherwise caching won't work
 | 
						|
COPY ./requirements /requirements
 | 
						|
 | 
						|
RUN pip install -r /requirements/production.txt \
 | 
						|
    && groupadd -r django \
 | 
						|
    && useradd -r -g django django
 | 
						|
 | 
						|
COPY . /app
 | 
						|
 | 
						|
RUN mkdir -p /var/log/gunicorn/ \
 | 
						|
    && mkdir -p /data/sockets \
 | 
						|
    && chown -R django /app \
 | 
						|
    && chown -R root:django /var/log/gunicorn/ \
 | 
						|
    && chmod -R 770 /var/log/gunicorn/ 
 | 
						|
 | 
						|
COPY ./compose/django/live-gunicorn-mhackspace.sh /live-gunicorn-mhackspace.sh
 | 
						|
COPY ./compose/django/live-gunicorn-mhackspace.sh /stage-gunicorn-mhackspace.sh
 | 
						|
COPY ./compose/django/entrypoint.sh /entrypoint.sh
 | 
						|
RUN sed -i 's/\r//' /entrypoint.sh \
 | 
						|
    && sed -i 's/\r//' /stage-gunicorn-mhackspace.sh \
 | 
						|
    && sed -i 's/\r//' /live-gunicorn-mhackspace.sh \
 | 
						|
    && chmod +x /entrypoint.sh \
 | 
						|
    && chown django /entrypoint.sh \
 | 
						|
    && chmod +x /stage-gunicorn-mhackspace.sh \
 | 
						|
    && chown django /stage-gunicorn-mhackspace.sh \
 | 
						|
    && chmod +x /live-gunicorn-mhackspace.sh \
 | 
						|
    && chown django /live-gunicorn-mhackspace.sh \
 | 
						|
    && chown django /data/sockets 
 | 
						|
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
ENTRYPOINT ["/entrypoint.sh"]
 |