Skip to content

Commit d16530a

Browse files
committed
Fix wrong script path on bdk_cpp.dockerfile
1 parent 1ab747a commit d16530a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

docker/bdk_cpp.dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ RUN apt-get update && apt-get upgrade -y
1111
# Install Docker-specific dependencies
1212
RUN apt-get -y install nano vim unison curl jq unzip gcovr
1313

14+
# Copy the deps script to the container
15+
COPY scripts/deps.sh /
16+
1417
# Install dependencies
15-
RUN bash ./scripts/deps.sh --install
18+
RUN bash deps.sh --install
1619

1720
# Create a directory for sonarcloud
1821
RUN mkdir /root/.sonar

0 commit comments

Comments
 (0)