Skip to content

Instantly share code, notes, and snippets.

@praveenweb
Created February 26, 2018 09:58
Show Gist options
  • Save praveenweb/cbc7f2db87844c2d94083488e5cd6e98 to your computer and use it in GitHub Desktop.
Save praveenweb/cbc7f2db87844c2d94083488e5cd6e98 to your computer and use it in GitHub Desktop.
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 gunicorn_app /app
EXPOSE 8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment