Created
February 26, 2018 09:59
-
-
Save praveenweb/5362e27bfc01b09cc35fb6ef24fa2b79 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 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