dropshell_alpine working. Example for xxhash recursive made.

This commit is contained in:
Your Name
2025-04-28 23:36:42 +12:00
parent 148b590035
commit ac0b626ae7
9 changed files with 100 additions and 34 deletions

View File

@ -0,0 +1,19 @@
FROM alpine:latest
RUN apk add --no-cache \
libtbb \
xxhash-dev \
bash \
nano
WORKDIR /app
COPY docker/dropshell_alpine/output/dropshell /app/dropshell
RUN /bin/bash -c "mkdir -p /opt/dropshell/templates && mkdir -p /config"
COPY templates /opt/dropshell/templates
COPY src/dropshell-completion.bash /etc/bash_completion.d/
RUN /app/dropshell init /config
RUN /app/dropshell version
ENTRYPOINT ["/app/dropshell"]