Skip to content

Instantly share code, notes, and snippets.

@ragoragino
Last active March 7, 2021 15:07
Show Gist options
  • Save ragoragino/28affcd44dd2d9021b7da5a42768f98f to your computer and use it in GitHub Desktop.
Save ragoragino/28affcd44dd2d9021b7da5a42768f98f to your computer and use it in GitHub Desktop.
ARG ALPINE_VERSION=3.13
FROM alpine:${ALPINE_VERSION}
RUN apk update
RUN apk add g++ \
make \
cmake \
ccache \
python3-dev \
py-pip \
git \
linux-headers \
vim \
ctags \
bash \
gdb \
openssh \
db-dev \
libexecinfo-dev \
libexecinfo \
musl-libintl \
musl-dev \
file \
wget \
perl
SHELL ["/bin/bash", "-c"]
CMD ["bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment