Skip to content

Commit

Permalink
dump media segment
Browse files Browse the repository at this point in the history
  • Loading branch information
igorshevach committed Jun 27, 2024
1 parent 1a4d215 commit 8de6a4b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions nginx-live-module/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,15 @@ COPY nginx-kmp-in-module nginx-kmp-in-module

ARG APP_VERSION="0.1"
ARG LIVE_VERSION="${APP_VERSION}"
# TODO: set back to 0
ARG DEBUG_BUILD="1"

ENV RTMP_KMP_VERSION="${APP_VERSION}"

RUN cd /tmp/build/nginx && \
./configure --with-http_secure_link_module \
RUN [ "${DEBUG_BUILD}" -eq "1" ] && debug_option=--with-debug; \
cd /tmp/build/nginx && \
./configure "$debug_option" \
--with-http_secure_link_module \
--with-http_stub_status_module \
--add-module=/tmp/build/nginx-common \
--add-module=/tmp/build/nginx-kmp-in-module \
Expand Down

0 comments on commit 8de6a4b

Please sign in to comment.