chrll/crc32
Simple container with the crc32 util from perl-archive-zip
You need to mount your file in order to get the crc32.
Assuming you want to get the crc32 from your-file:
docker run --rm -it -v ./your-file:/your-file chrll/crc32:latest /your-file
FROM alpine:latest
RUN apk add --no-cache -U perl-archive-zip
ENTRYPOINT ["/usr/bin/crc32"]
docker pull chrll/crc32