Skip to content

Commit 1efecd7

Browse files
committed
Don't install private headers.
1 parent 5fb99d0 commit 1efecd7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docker/Dockerfile.build

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ WORKDIR /src
1111
RUN --mount=type=bind,target=.,rw cmake -B build && make -C build all test install
1212
FROM ${BASE_IMAGE} AS clean
1313
COPY --from=build /usr/local/lib/libg722.* /usr/local/lib/
14-
COPY --from=build /usr/local/include/g722* /usr/local/include/
14+
COPY --from=build --exclude=g722_common.h --exclude=g722_private.h \
15+
/usr/local/include/g722* /usr/local/include/

0 commit comments

Comments
 (0)