Skip to content

Instantly share code, notes, and snippets.

@praveenweb
Created February 26, 2018 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save praveenweb/5362e27bfc01b09cc35fb6ef24fa2b79 to your computer and use it in GitHub Desktop.
Save praveenweb/5362e27bfc01b09cc35fb6ef24fa2b79 to your computer and use it in GitHub Desktop.
FROM python:3.6
# Create app directory
WORKDIR /app
# Install app dependencies
COPY static_app/requirements.txt ./
RUN pip install -r requirements.txt
# Bundle app source
COPY static_app /app
EXPOSE 8080
CMD ["python","server.py"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment