main
parent
a88ee683b1
commit
bc3960a67d
|
|
@ -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"]
|
||||
Loading…
Reference in New Issue