File tree Expand file tree Collapse file tree 6 files changed +10
-6
lines changed Expand file tree Collapse file tree 6 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 6
6
jobs :
7
7
release :
8
8
runs-on : " ubuntu-latest"
9
- timeout-minutes : 5
10
9
steps :
11
10
- name : Check out the repo
12
11
uses : actions/checkout@v4
Original file line number Diff line number Diff line change 12
12
jobs :
13
13
docker :
14
14
runs-on : " ubuntu-latest"
15
- timeout-minutes : 5
16
15
steps :
17
16
- uses : actions/checkout@v4
18
17
with :
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
ghcr :
10
10
runs-on : ubuntu-latest
11
- timeout-minutes : 5
12
11
permissions :
13
12
packages : write
14
13
contents : read
Original file line number Diff line number Diff line change 20
20
python-version :
21
21
- " 3.10"
22
22
runs-on : ${{ matrix.platform }}
23
- timeout-minutes : 5
24
23
steps :
25
24
- uses : actions/checkout@v4
26
25
- name : Set up Poetry
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ WORKDIR /app
18
18
COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt
19
19
COPY . .
20
20
21
+ # Install packages: https://stackoverflow.com/a/68666500/4457856
22
+ RUN apt-get update \
23
+ && apt-get install -y ffmpeg libsm6 libxext6
24
+
21
25
# Install dependencies
22
26
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
23
27
Original file line number Diff line number Diff line change @@ -9,5 +9,9 @@ langchain-openai==0.1.20
9
9
langchain-community == 0.2.11
10
10
azure-search-documents == 11.5.1
11
11
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
You can’t perform that action at this time.
0 commit comments