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

Commit

Permalink
Include headers in Debian package (#9)
Browse files Browse the repository at this point in the history
* Include headers in Debian package

* Fix copy

* Fix header paths
  • Loading branch information
mtlynch authored Nov 16, 2022
1 parent 461809f commit 46097ce
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ ARG PKG_DIR="/releases/${PKG_ID}"

RUN mkdir --parents "${PKG_DIR}"

# Copy headers to /usr/include.
RUN mkdir -p "${PKG_DIR}/usr/include" && \
cp -R /usr/include/nice "${PKG_DIR}/usr/include/" && \
cp -R /usr/include/stun "${PKG_DIR}/usr/include/"

# Copy compiled shared library into Debian package.
RUN cp \
--parents \
Expand Down

0 comments on commit 46097ce

Please sign in to comment.