Skip to content

Commit

Permalink
keep only .so as artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
haitomatic committed Jan 19, 2024
1 parent 15738af commit b917edd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:22.04 AS builder

ENV DEBIAN_FRONTEND=noninteractive
ENV DEBIAN_FRONTEND=noninteractive

RUN apt-get update -y \
&& apt install -y \
Expand Down Expand Up @@ -32,5 +32,5 @@ RUN ./build.sh
FROM busybox

WORKDIR /artifacts
COPY --from=builder /px4-plugins/build/*.deb /artifacts
COPY --from=builder /px4-plugins/build/*.so /artifacts

1 change: 0 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ fi
cd build
cmake ..
make
cpack -G DEB

0 comments on commit b917edd

Please sign in to comment.