diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:44 +0000 |
commit | 836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch) | |
tree | 1604da8f482d02effa033c94a84be42bc0c848c3 /build_external/clean-install-arch-extras.Dockerfile | |
parent | Releasing debian version 1.44.3-2. (diff) | |
download | netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.tar.xz netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.zip |
Merging upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build_external/clean-install-arch-extras.Dockerfile')
-rw-r--r-- | build_external/clean-install-arch-extras.Dockerfile | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/build_external/clean-install-arch-extras.Dockerfile b/build_external/clean-install-arch-extras.Dockerfile deleted file mode 100644 index 8b18057e..00000000 --- a/build_external/clean-install-arch-extras.Dockerfile +++ /dev/null @@ -1,59 +0,0 @@ -FROM archlinux/base:latest - -# There is some redundancy between this file and the archlinux Dockerfile in the helper images -# repo and also with the clean-install.Dockerfile. Once the help image is available on Docker -# Hub this file can be deleted. -RUN echo sdlsjdkls -RUN pacman -Syyu --noconfirm -RUN pacman --noconfirm --needed -S autoconf \ - autoconf-archive \ - autogen \ - automake \ - gcc \ - make \ - git \ - libuv \ - lz4 \ - netcat \ - openssl \ - pkgconfig \ - python \ - libvirt \ - cmake \ - valgrind \ - gdb - -ARG EXTRA_CFLAGS -COPY . /opt/netdata/source -WORKDIR /opt/netdata/source - -RUN git config --global user.email "root@container" -RUN git config --global user.name "Fake root" - -# RUN make distclean -> not safe if tree state changed on host since last config -# Kill everything that is not in .gitignore preserving any fresh changes, i.e. untracked changes will be -# deleted but local changes to tracked files will be preserved. -RUN if git status --porcelain | grep '^[MADRC]'; then \ - git stash && git clean -dxf && (git stash apply || true) \ - else \ - git clean -dxf ; \ - fi - -# Not everybody is updating distclean properly - fix. -RUN find . -name '*.Po' -exec rm \{\} \; -RUN rm -rf autom4te.cache -RUN rm -rf .git/ -RUN find . -type f >/opt/netdata/manifest - -RUN CFLAGS="-Og -g -ggdb -Wall -Wextra -Wformat-signedness -DNETDATA_INTERNAL_CHECKS=1\ - -DNETDATA_VERIFY_LOCKS=1 ${EXTRA_CFLAGS}" ./netdata-installer.sh --require-cloud --disable-lto - -RUN ln -sf /dev/stdout /var/log/netdata/access.log && \ - ln -sf /dev/stdout /var/log/netdata/debug.log && \ - ln -sf /dev/stderr /var/log/netdata/error.log && \ - ln -sf /dev/stdout /var/log/netdata/fluentbit.log - -RUN rm /var/lib/netdata/registry/netdata.public.unique.id - -CMD ["/usr/sbin/valgrind", "--leak-check=full", "/usr/sbin/netdata", "-D"] - |