taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

libmicrohttpd-builder.Containerfile (818B)


      1 FROM taler-alpine-imaging/gnunet-builder:latest
      2 
      3 WORKDIR /builder/libmicrohttpd
      4 RUN git clone https://git.gnunet.org/libmicrohttpd.git .
      5 RUN ./bootstrap
      6 RUN ./configure \
      7     --prefix=/prefix/usr \
      8 		--sysconfdir=/prefix/etc \
      9 		--mandir=/prefix/usr/share/man \
     10 		--infodir=/prefix/usr/share/info \
     11 		--disable-thread-names \
     12 		--enable-largefile \
     13 		--enable-curl \
     14 		--enable-https \
     15 		--enable-messages
     16 RUN make -j
     17 RUN make check
     18 RUN make install
     19 
     20 LABEL org.opencontainers.image.title="LibMicroHTTPD: Builder"
     21 LABEL org.opencontainers.image.description="An alpine-based image containing LibMicroHTTPD"
     22 LABEL org.opencontainers.image.source="https://git.taler.net/deployment.git/tree/packaging/docker-alpine/libmicrohttpd.Containerfile"
     23 LABEL org.opencontainers.image.authors="Nullptrderef <nullptrderef@proton.me>"