xwim-build/Dockerfile

15 lines
340 B
Docker
Raw Normal View History

2020-02-16 02:03:02 +00:00
FROM alpine:latest
RUN apk add \
# Base dependencies for `git push` xwim build
meson ninja spdlog-dev fmt-dev libarchive-dev g++ doxygen \
# Dependencies for release build/libarchive build
gcc musl-dev make cmake zip binutils libgcc \
2020-02-16 02:03:02 +00:00
&& mkdir /build/
COPY ./entrypoint.sh /usr/local/bin
WORKDIR /build/
CMD ["entrypoint.sh"]