fixed build docker image bug
Some checks are pending
CI/CD job / Push Docker image to Docker Hub (push) Waiting to run
CI/CD job / Pull image to cluster (push) Blocked by required conditions

This commit is contained in:
IcyAltair 2025-12-05 23:26:12 +03:00
parent 2b6ad07c36
commit d4c622295c
2 changed files with 9 additions and 5 deletions

View file

@ -6,14 +6,17 @@ RUN apt-get install -y --no-install-recommends \
build-essential \ build-essential \
cmake \ cmake \
pkg-config \ pkg-config \
git git \
libsm6 \
libxext6 \
ffmpeg \
ibgtk2.0-dev \
libavcodec-dev \
libavformat-dev \
libswscale-dev
COPY ./docker_requirements.txt /requirements.txt COPY ./docker_requirements.txt /requirements.txt
RUN pip install "cython<3.0.0" wheel
RUN pip install "pyyaml==6.0.2" --no-build-isolation
RUN pip install -r /requirements.txt RUN pip install -r /requirements.txt
COPY . /app COPY . /app

View file

@ -5,6 +5,7 @@ requests-oauthlib == 1.3.0
Flask == 3.0.2 Flask == 3.0.2
Flask-HTTPAuth == 4.8.0 Flask-HTTPAuth == 4.8.0
Flask-APScheduler == 1.13.1 Flask-APScheduler == 1.13.1
numpy == 1.26.2
pandas == 1.4.2 pandas == 1.4.2
Werkzeug == 3.0.1 Werkzeug == 3.0.1
paramiko == 3.4.0 paramiko == 3.4.0