xwim-build/Dockerfile
Armin Friedl 9203470182
All checks were successful
continuous-integration/drone/push Build is passing
Switch to glibc based build
2020-02-23 22:07:58 +01:00

17 lines
454 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 \
## 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"]