Skip to content
This repository was archived by the owner on Dec 2, 2022. It is now read-only.

Commit 46097ce

Browse files
authored
Include headers in Debian package (#9)
* Include headers in Debian package * Fix copy * Fix header paths
1 parent 461809f commit 46097ce

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ ARG PKG_DIR="/releases/${PKG_ID}"
4040

4141
RUN mkdir --parents "${PKG_DIR}"
4242

43+
# Copy headers to /usr/include.
44+
RUN mkdir -p "${PKG_DIR}/usr/include" && \
45+
cp -R /usr/include/nice "${PKG_DIR}/usr/include/" && \
46+
cp -R /usr/include/stun "${PKG_DIR}/usr/include/"
47+
4348
# Copy compiled shared library into Debian package.
4449
RUN cp \
4550
--parents \

0 commit comments

Comments
 (0)