Skip to content

Commit 2f1af75

Browse files
committed
fix: ajust pipline context
1 parent c85dcea commit 2f1af75

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build-and-test-containers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build container
2626
run: |
2727
cd ${{ matrix.container }}
28-
docker build -t test-${{ matrix.container }} -f Containerfile .
28+
docker build -t test-${{ matrix.container }} -f Containerfile ../
2929
3030
- name: Run container
3131
run: |

docs/debian:bookworm/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM debian:bookworm
22

33
WORKDIR /home/tester
44

5-
COPY ../install_depthai.sh /home/tester/install_depthai.sh
5+
COPY install_depthai.sh /home/tester/install_depthai.sh
66

77
RUN chmod +x /home/tester/install_depthai.sh
88

docs/ubuntu:jammy/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM ubuntu:jammy
33
WORKDIR /home/tester
44

55

6-
COPY ../install_depthai.sh /home/tester/install_depthai.sh
6+
COPY install_depthai.sh /home/tester/install_depthai.sh
77

88
RUN chmod +x /home/tester/install_depthai.sh
99

docs/ubuntu:latest/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:latest
22

33
WORKDIR /home/tester
44

5-
COPY ../install_depthai.sh /home/tester/install_depthai.sh
5+
COPY install_depthai.sh /home/tester/install_depthai.sh
66

77
RUN chmod +x /home/tester/install_depthai.sh
88

0 commit comments

Comments
 (0)