FROM python:slim
|
|
|
|
RUN pip install gunicorn flask requests bs4
|
|
|
|
COPY wp_wh.py converter.py hfr.py credentials.json ./
|
|
|
|
EXPOSE 54321
|
|
|
|
ENTRYPOINT ["/usr/local/bin/gunicorn", "-b", ":54321", "wp_wh:app"]
|