Skip to content

Instantly share code, notes, and snippets.

@stefanthoss
Last active March 26, 2024 11:29
Show Gist options
  • Save stefanthoss/f1a2128eb054528feb05c4006a7efaa0 to your computer and use it in GitHub Desktop.
Save stefanthoss/f1a2128eb054528feb05c4006a7efaa0 to your computer and use it in GitHub Desktop.
Install pbzip2 in an Alpine Linux Docker image
FROM alpine:3.10
RUN apk add --no-cache \
bzip2-dev \
g++ \
make
RUN cd /tmp/ && \
wget -q https://launchpad.net/pbzip2/1.1/1.1.13/+download/pbzip2-1.1.13.tar.gz && \
tar -xzf pbzip2-1.1.13.tar.gz && \
cd pbzip2-1.1.13/ && \
make install && \
rm -r /tmp/pbzip2-1.1.13/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment