unrar-arm64/Dockerfile
Julien Cabillot b965572f37
Some checks failed
perso/unrar-arm64/pipeline/head There was a failure building this commit
add cleanup
2021-01-04 14:06:51 -05:00

11 lines
285 B
Docker

FROM "alpine:latest"
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
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" ]