From cb61e01f042fe3495f58ac633589e57610f1879c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B9=20=D0=A8=D0=B8?= =?UTF-8?q?=D0=BC=D0=B0=D0=BD=D1=81=D0=BA=D0=B8=D0=B9?= Date: Thu, 22 Feb 2024 19:32:37 +0300 Subject: [PATCH] dockerfile add --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..72a69be --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.10 +WORKDIR / + +RUN apt-get update -y +RUN apt-get upgrade -y +COPY ./requirements.txt ./ +RUN pip install --upgrade pip +RUN pip install -r requirements.txt +COPY . . + +CMD python3 handlers.py \ No newline at end of file