Skip to content

Commit

Permalink
Update libhttpserver.dockerfile silent make
Browse files Browse the repository at this point in the history
  • Loading branch information
joanhey authored Dec 9, 2024
1 parent 5fb2f63 commit f5a46b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frameworks/C++/libhttpserver/libhttpserver.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV LIBHTTPSERVER_VERSION 0.17.5

RUN curl https://s3.amazonaws.com/libhttpserver/libmicrohttpd_releases/libmicrohttpd-${LIBMICROHTTPD_VERSION}.tar.gz -o libmicrohttpd-${LIBMICROHTTPD_VERSION}.tar.gz > /dev/null
RUN tar -xvzf libmicrohttpd-${LIBMICROHTTPD_VERSION}.tar.gz > /dev/null
RUN cd libmicrohttpd-${LIBMICROHTTPD_VERSION} && ./configure --disable-examples && make && make install
RUN cd libmicrohttpd-${LIBMICROHTTPD_VERSION} && ./configure --disable-examples && make --quiet && make install --quiet
RUN curl -L https://github.com/etr/libhttpserver/archive/${LIBHTTPSERVER_VERSION}.tar.gz -o libhttpserver-${LIBHTTPSERVER_VERSION}.tar.gz > /dev/null
RUN tar -xvzf libhttpserver-${LIBHTTPSERVER_VERSION}.tar.gz > /dev/null
RUN cd libhttpserver-${LIBHTTPSERVER_VERSION} && ./bootstrap && mkdir build && cd build && ../configure --enable-fastopen && make --quiet && make install --quiet
Expand Down

0 comments on commit f5a46b4

Please sign in to comment.