summaryrefslogtreecommitdiff
path: root/packaging/docker-alpine/builder.Containerfile
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/docker-alpine/builder.Containerfile')
-rw-r--r--packaging/docker-alpine/builder.Containerfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/packaging/docker-alpine/builder.Containerfile b/packaging/docker-alpine/builder.Containerfile
new file mode 100644
index 0000000..20e8488
--- /dev/null
+++ b/packaging/docker-alpine/builder.Containerfile
@@ -0,0 +1,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>"