Added blag
This commit is contained in:
parent
8caca309b2
commit
cfc679c0cb
1 changed files with 15 additions and 0 deletions
15
blag/Dockerfile
Normal file
15
blag/Dockerfile
Normal 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" ]
|
Loading…
Add table
Add a link
Reference in a new issue