Sign inSign up

quadric/zstd

By quadric

Updated over 8 years ago

Image
0

126

quadric/zstd repository overview

Created using Dockerfile from: https://hub.docker.com/r/sidereal/zstd/

## Step 1 : Make zstd
FROM buildpack-deps:stretch as make

WORKDIR /root

RUN set -x \
 && apt-get update && apt-get install -y --no-install-recommends liblz4-dev \
 && rm -rf /var/lib/apt/lists/* \
 && git clone -b v1.3.4 --depth 1 https://github.com/facebook/zstd.git \
 && cd zstd \
 && make \
 && ./zstd --help

## Step 2 : Copy binary to debian:stretch-slim

FROM debian:stretch-slim

COPY --from=make /root/zstd/zstd /usr/local/bin/

ENTRYPOINT [ "zstd" ]

Tag summary

Content type

Image

Digest

Size

21.9 MB

Last updated

over 8 years ago

docker pull quadric/zstd:1.3.4