10 lines
189 B
Docker
10 lines
189 B
Docker
FROM python:slim
|
|
|
|
|
|
RUN apt-get update && apt-get install -y git zip && pip install aiohttp b2sdk pytest && mkdir /files
|
|
|
|
RUN mkdir /root/.ssh
|
|
|
|
COPY src /src
|
|
|
|
CMD [ "python", "/src/main.py"] |