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/Dockerfile

5 lines
136 B
Docker

FROM python:3
ADD requirements.txt /
RUN pip install -r requirements.txt
ADD transifex_demo.py /
CMD [ "python", "./transifex_demo.py" ]