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
144 B
Docker

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