summaryrefslogtreecommitdiff
path: root/packaging/docker-alpine/builder.Containerfile
blob: 20e84883edb427502c3e9e03d19574f8550eca43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.source="https://git.taler.net/deployment.git/tree/packaging/docker-alpine/builder.Containerfile"
LABEL org.opencontainers.image.authors="Nullptrderef <nullptrderef@proton.me>"