webhook/Dockerfile

12 lines
109 B
Docker
Raw Normal View History

2021-07-04 02:23:38 +00:00
FROM python:slim
RUN pip install aiohttp
COPY src /src
COPY test /test
CMD [ "python", "/src/main.py"]