mirror of
https://github.com/babysor/MockingBird.git
synced 2024-03-22 13:11:31 +08:00
10 lines
162 B
Plaintext
10 lines
162 B
Plaintext
|
|
||
|
FROM python:3.7
|
||
|
|
||
|
RUN pip install gevent uwsgi flask
|
||
|
|
||
|
COPY app.py /app.py
|
||
|
|
||
|
EXPOSE 3000
|
||
|
|
||
|
ENTRYPOINT ["uwsgi", "--http", ":3000", "--master", "--module", "app:app"]
|