xwim-build/Dockerfile
Armin Friedl e0c77b64ec
Some checks reported errors
continuous-integration/drone/push Build was killed
Add gcovr coverage reporter
2020-02-25 22:58:54 +01:00

19 lines
494 B
Docker

FROM ubuntu:rolling
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y\
# Base dependencies for: `git push` xwim build
## meson/build essentials
build-essential cmake pkg-config meson ninja-build g++ doxygen \
## test coverage generator
gcovr \
## xwim dependencies
libspdlog-dev libfmt-dev libarchive-dev \
# Dependencies for release build/libarchive build
zip \
&& mkdir /build/
COPY ./entrypoint.sh /usr/local/bin
WORKDIR /build/
CMD ["entrypoint.sh"]