Files
webhook/Dockerfile
2021-07-04 02:23:38 +00:00

12 lines
109 B
Docker

FROM python:slim
RUN pip install aiohttp
COPY src /src
COPY test /test
CMD [ "python", "/src/main.py"]