packaging: Install on Alpine distro

This commit is contained in:
Andrew Hamilton 2024-03-08 23:25:15 +10:00
parent 29c359d39d
commit 6d2e34e049
4 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,13 @@
FROM alpine:3.19.1
RUN apk add pipx gcc sudo python3-dev musl-dev
COPY . eris
RUN PIPX_BIN_DIR=/bin pipx install --system-site-packages ./eris/eris
RUN eris --install-all-tools
ENTRYPOINT ["eris"]
# docker build -t eris -f packaging/Dockerfile.arch .