From ef2abe0ad7b211c278e87749e97874a6ccd9870a Mon Sep 17 00:00:00 2001 From: jimmy Date: Sun, 20 Jun 2021 03:04:07 +0000 Subject: [PATCH] Add Dockerfile --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..eb8029a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +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 +COPY test /test + +CMD [ "python", "/src/main.py"] \ No newline at end of file