Created
February 26, 2018 10:01
-
-
Save praveenweb/a371e42ddfd302251b07f69abb8d3baf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.6 | |
# Create app directory | |
WORKDIR /app | |
# Install app dependencies | |
COPY gunicorn_app/requirements.txt ./ | |
RUN pip install -r requirements.txt | |
# Bundle app source | |
COPY . /app | |
EXPOSE 8080 | |
CMD ["gunicorn", "--config", "./gunicorn_app/conf/gunicorn_config.py", "gunicorn_app:app"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment