This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
transifex-webhook/flask_webhook/Dockerfile

7 lines
174 B
Docker

FROM python:3
ADD /webhook_app/flask_webhook_requirements.txt /
RUN pip install -r flask_webhook_requirements.txt
ADD /webhook_app/server.py /
CMD [ "python", "server.py" ]