dropshell_alpine working. Example for xxhash recursive made.
This commit is contained in:
19
docker/dropshell_alpine/Dockerfile.run
Normal file
19
docker/dropshell_alpine/Dockerfile.run
Normal 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"]
|
Reference in New Issue
Block a user