summaryrefslogtreecommitdiff
path: root/packaging/docker-alpine/builder.Containerfile
blob: 3429b7e3fdbe6d42dade70054e100bfc7f49ada2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM alpine:latest

RUN <<EOT
apk update && \
  apk add --no-cache git make cmake automake autoconf libtool clang texinfo gnutls-dev curl-dev coreutils && \
  mkdir /prefix -p
EOT

ENV CC=clang
ENV CFLAGS="-Os"

WORKDIR /builder

LABEL org.opencontainers.image.title="GNUNet Builder"
LABEL org.opencontainers.image.description="A baseline Alpine builder for LibGNUNet & Taler Alpine Images."
LABEL org.opencontainers.image.documentation="https://git.taler.net/deployment.git/tree/packaging/docker-alpine/builder.Containerfile"