From bc3960a67d15702b5ae226bbf429995d37c0e6f4 Mon Sep 17 00:00:00 2001 From: korotkov Date: Thu, 6 Nov 2025 16:02:30 +0500 Subject: [PATCH] q --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5042126..3e65bbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Наследуем от Oracle образа и добавляем Python FROM proxy.docker.dataekb.ru/local_cache/oracleclient_docker:stable -RUN apt install -y build-essential +RUN apt install -y build-essential libffi-dev # Полная информация о системе RUN cat /etc/os-release RUN uname -a @@ -31,5 +31,5 @@ COPY ./app /code/app RUN python3.14 -m pip install --upgrade pip RUN echo Y | python3.14 -m pip install --no-cache-dir --upgrade -r /code/requirements.txt -RUN apt remove -y build-essential +RUN apt remove -y build-essential libffi-dev CMD ["python", "main.py"] \ No newline at end of file