12 lines
109 B
Docker
12 lines
109 B
Docker
FROM python:slim
|
|
|
|
|
|
RUN pip install aiohttp
|
|
|
|
|
|
COPY src /src
|
|
COPY test /test
|
|
|
|
CMD [ "python", "/src/main.py"]
|
|
|