Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ RUN zypper --non-interactive install \
libselinux1 \
&& zypper clean
ARG profile=release
RUN if [[ "$profile" == "debug" ]]; then zypper --non-interactive install gdb lldb; fi
# Install rust-gdb and rust-lldb for debug profile
RUN if [[ "$profile" == "debug" ]]; then zypper --non-interactive install gdb lldb python3-lldb rust; fi
COPY --from=build /usr/local/src/linux/tools/bpf/bpftool/bpftool /usr/sbin/bpftool
COPY --from=build /usr/local/src/lockc/target/${profile}/lockcd /usr/bin/lockcd
ENTRYPOINT ["/usr/bin/lockcd"]