29 lines
		
	
	
		
			528 B
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			528 B
		
	
	
	
		
			Docker
		
	
	
	
FROM python:3.6-alpine
 | 
						|
 | 
						|
RUN adduser -D microblog
 | 
						|
 | 
						|
WORKDIR /home/microblog
 | 
						|
 | 
						|
COPY requirements.txt requirements.txt
 | 
						|
 | 
						|
RUN apk update \
 | 
						|
    && apk add libpq postgresql-dev \
 | 
						|
    && apk add build-base
 | 
						|
 | 
						|
RUN python -m venv venv
 | 
						|
RUN venv/bin/pip install -r requirements.txt
 | 
						|
RUN venv/bin/pip install gunicorn pymysql
 | 
						|
 | 
						|
COPY app app
 | 
						|
COPY migrations migrations
 | 
						|
COPY microblog.py config.py boot.sh ./
 | 
						|
RUN chmod a+x boot.sh
 | 
						|
 | 
						|
ENV FLASK_APP microblog.py
 | 
						|
 | 
						|
RUN chown -R microblog:microblog ./
 | 
						|
USER microblog
 | 
						|
 | 
						|
EXPOSE 5000
 | 
						|
ENTRYPOINT ["./boot.sh"]
 |