broadcast/ntfy_router/Dockerfile

13 lines
176 B
Docker
Raw Normal View History

2023-11-19 05:52:07 -05:00
FROM python:3.11
LABEL author="Ashish D'Souza"
WORKDIR /code
ENTRYPOINT ["python3.11", "router.py"]
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY src .