taler-deployment

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

builder.Containerfile (599B)


      1 FROM alpine:latest
      2 
      3 RUN <<EOT
      4 apk update && \
      5   apk add --no-cache git make cmake automake autoconf libtool clang texinfo gnutls-dev curl-dev coreutils && \
      6   mkdir /prefix -p
      7 EOT
      8 
      9 ENV CC=clang
     10 ENV CFLAGS="-Os"
     11 
     12 WORKDIR /builder
     13 
     14 LABEL org.opencontainers.image.title="GNUNet Builder"
     15 LABEL org.opencontainers.image.description="A baseline Alpine builder for LibGNUNet & Taler Alpine Images."
     16 LABEL org.opencontainers.image.source="https://git.taler.net/deployment.git/tree/packaging/docker-alpine/builder.Containerfile"
     17 LABEL org.opencontainers.image.authors="Nullptrderef <nullptrderef@proton.me>"