File size: 119 Bytes
afcfd4d
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
EXPOSE 8385
CMD ["webhook-dispatcher"]