rajin2c
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
0 deletions
-
Dockerfile
|
|
|
@ -0,0 +1,9 @@ |
|
|
|
FROM ubuntu:16.04 |
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y python python-pip |
|
|
|
|
|
|
|
RUN pip install flask |
|
|
|
|
|
|
|
COPY app.py /opt/ |
|
|
|
|
|
|
|
ENTRYPOINT FLASK_APP=/opt/app.py flask run --host=0.0.0.0 --port=8080 |