Armin Friedl
e0c77b64ec
Some checks reported errors
continuous-integration/drone/push Build was killed
19 lines
494 B
Docker
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"]
|