Armin Friedl
9203470182
All checks were successful
continuous-integration/drone/push Build is passing
17 lines
454 B
Docker
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"]
|