fixed build docker image bug
This commit is contained in:
parent
2b6ad07c36
commit
d4c622295c
2 changed files with 9 additions and 5 deletions
|
|
@ -6,14 +6,17 @@ RUN apt-get install -y --no-install-recommends \
|
|||
build-essential \
|
||||
cmake \
|
||||
pkg-config \
|
||||
git
|
||||
git \
|
||||
libsm6 \
|
||||
libxext6 \
|
||||
ffmpeg \
|
||||
ibgtk2.0-dev \
|
||||
libavcodec-dev \
|
||||
libavformat-dev \
|
||||
libswscale-dev
|
||||
|
||||
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
|
||||
|
||||
COPY . /app
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ requests-oauthlib == 1.3.0
|
|||
Flask == 3.0.2
|
||||
Flask-HTTPAuth == 4.8.0
|
||||
Flask-APScheduler == 1.13.1
|
||||
numpy == 1.26.2
|
||||
pandas == 1.4.2
|
||||
Werkzeug == 3.0.1
|
||||
paramiko == 3.4.0
|
||||
|
|
|
|||
Loading…
Reference in a new issue