Skip to content

Instantly share code, notes, and snippets.

@praveenweb
Created February 26, 2018 09:38
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/0c6c561f544a855419730d89914e1946 to your computer and use it in GitHub Desktop.
Save praveenweb/0c6c561f544a855419730d89914e1946 to your computer and use it in GitHub Desktop.
FROM python:3.6
# Create app directory
WORKDIR /app
# Install app dependencies
COPY src/requirements.txt ./
RUN pip install -r requirements.txt
# Bundle app source
COPY src /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