2015-11-15 20:59:29 +01:00
|
|
|
# Using official python runtime base image
|
2016-04-25 20:28:21 +02:00
|
|
|
FROM python:2.7-alpine
|
2015-11-15 20:59:29 +01:00
|
|
|
|
|
|
|
# Set the application directory
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Install our requirements.txt
|
|
|
|
ADD requirements.txt /app/requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
|
|
|
# Copy our code from the current folder to /app inside the container
|
|
|
|
ADD . /app
|
|
|
|
|
2016-04-25 20:28:21 +02:00
|
|
|
# Make port 80 available for links and/or publish
|
|
|
|
EXPOSE 80
|
2015-11-15 20:59:29 +01:00
|
|
|
|
|
|
|
# Define our command to be run when launching the container
|
2016-06-18 06:13:51 +02:00
|
|
|
CMD gunicorn app:app -b 0.0.0.0:80 --log-file - --access-logfile - --workers 4 --keep-alive 0
|