From cfc679c0cb427b0f818bcc1f2dea0dc96399a479 Mon Sep 17 00:00:00 2001 From: Liliesh Date: Mon, 14 Jul 2025 20:37:35 +0200 Subject: [PATCH] Added blag --- blag/Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 blag/Dockerfile diff --git a/blag/Dockerfile b/blag/Dockerfile new file mode 100644 index 0000000..adefa04 --- /dev/null +++ b/blag/Dockerfile @@ -0,0 +1,15 @@ +FROM alpine:3.20.1 + +# Install base +RUN apk add --no-cache --upgrade grep bash +RUN apk add --no-cache --upgrade python3 && ln -sf python3 /usr/bin/python +RUN python3 -m venv /venv +RUN /venv/bin/pip install --no-cache --upgrade pip setuptools + +# Install specifics +RUN /venv/bin/pip install --no-cache --upgrade blag + +ENV TARGET_DIRECTORY="/source" + +WORKDIR $TARGET_DIRECTORY +CMD [ "/venv/bin/blag", "build" ] \ No newline at end of file