Files
unrar-arm64/Dockerfile
T
cloudix_mcp_server 7ccbe72a85
Docker Build and Push / lint (pull_request) Successful in 8s
Docker Build and Push / build (pull_request) Failing after 8s
Docker Build and Push / test (pull_request) Has been skipped
Docker Build and Push / push (pull_request) Has been skipped
Add hadolint ignore for apk add
2026-06-08 22:29:48 -04:00

12 lines
310 B
Docker

FROM "alpine:latest"
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
# hadolint ignore=DL3018
RUN apk add --no-cache unrar && \
rm -rf /usr/lib/ruby/gems/*/cache/* \
/var/cache/apk/* \
/tmp/* \
/var/tmp/*
ENTRYPOINT [ "/bin/sh", "-c", "cd /data && /usr/bin/unrar" ]