Skip to content

Commit ad9eb24

Browse files
authored
Update Dockerfile
1 parent e6006e2 commit ad9eb24

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ RUN apt-get update && apt-get install -y build-essential git cmake
77
WORKDIR /sd.cpp
88

99
COPY . .
10+
RUN git submodule update --init --recursive
1011

1112
RUN mkdir build && cd build && cmake .. && cmake --build . --config Release
1213

1314
FROM ubuntu:$UBUNTU_VERSION as runtime
1415

1516
COPY --from=build /sd.cpp/build/bin/sd /sd
1617

17-
ENTRYPOINT [ "/sd" ]
18+
ENTRYPOINT [ "/sd" ]

0 commit comments

Comments
 (0)