Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,21 @@ RUN locale-gen C.UTF-8 || true
ENV LANG=C.UTF-8
ENV PATH=${PATH}:/usr/bin

RUN apk add --no-cache --update-cache --virtual .libexecinfo \
git \
g++ \
make \
cmake \
libtool \
automake && \
git clone https://github.com/ronchaine/libexecinfo.git && \
cd libexecinfo && \
make && \
make install && \
apk del .libexecinfo && \
cd .. && \
rm -rf libexecinfo

RUN apk add --no-cache --update-cache --virtual .elixir-ci \
git \
make \
Expand Down