Skip to content

Commit db147ca

Browse files
committed
add dependencies
1 parent 7f0b442 commit db147ca

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

.github/workflows/docker-release.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
jobs:
77
release:
88
runs-on: "ubuntu-latest"
9-
timeout-minutes: 5
109
steps:
1110
- name: Check out the repo
1211
uses: actions/checkout@v4

.github/workflows/docker.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ on:
1212
jobs:
1313
docker:
1414
runs-on: "ubuntu-latest"
15-
timeout-minutes: 5
1615
steps:
1716
- uses: actions/checkout@v4
1817
with:

.github/workflows/ghcr.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ env:
88
jobs:
99
ghcr:
1010
runs-on: ubuntu-latest
11-
timeout-minutes: 5
1211
permissions:
1312
packages: write
1413
contents: read

.github/workflows/test.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
python-version:
2121
- "3.10"
2222
runs-on: ${{ matrix.platform }}
23-
timeout-minutes: 5
2423
steps:
2524
- uses: actions/checkout@v4
2625
- name: Set up Poetry

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ WORKDIR /app
1818
COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt
1919
COPY . .
2020

21+
# Install packages: https://stackoverflow.com/a/68666500/4457856
22+
RUN apt-get update \
23+
&& apt-get install -y ffmpeg libsm6 libxext6
24+
2125
# Install dependencies
2226
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
2327

requirements.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@ langchain-openai==0.1.20
99
langchain-community==0.2.11
1010
azure-search-documents==11.5.1
1111
azure-identity==1.17.1
12-
ultralytics==8.2.77
13-
mediapipe==0.10.14
12+
13+
# To run 99_streamlit_examples/pages/10_Object_Detection.py
14+
# ultralytics==8.2.77
15+
16+
# To run 99_streamlit_examples/pages/11_Pose_Estimation.py
17+
# mediapipe==0.10.14

0 commit comments

Comments
 (0)