From a43fb36f44655e7c142c7973d548e8505fb1cda4 Mon Sep 17 00:00:00 2001 From: Igor <2006giqhpmine.ru@gmail.com> Date: Sat, 29 Jan 2022 22:03:35 +0900 Subject: Add docker )) --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f66d997 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +FROM python:bullseye + +RUN apt-get update +RUN apt-get upgrade +RUN pip install pip -U + +WORKDIR /app +COPY requirements.txt . +RUN pip install -r requirements.txt + +COPY . . +COPY data/config.py . + +CMD ["python", "main.py"] -- cgit v1.2.3