Added blag

This commit is contained in:
Liliesh 2025-07-14 20:37:35 +02:00
parent 8caca309b2
commit cfc679c0cb
Signed by: liliesh
GPG key ID: 680387646C7BAE8E

15
blag/Dockerfile Normal file
View file

@ -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" ]