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
Raw Normal View History

2022-12-14 08:33:48 +01:00
FROM python:3
ADD /app/requirements.txt /
RUN pip install -r requirements.txt
ADD /app/transifex_demo.py /
CMD [ "python", "transifex_demo.py" ]