commit c136d55519087455ab810f5d907554e1aca2ed21 parent 7ea9bca4deebf50f1b4d8c7092e61e1339d2830f Author: Flor Chacón <14323496+florelis@users.noreply.github.com> Date: Tue, 2 Jul 2024 10:41:15 -0700 Remove libyaml Dockerfile (#4604) We are getting build warnings about using external images in a Dockerfile coming from libyaml. This removes the file completely since we don't use it Diffstat:
| D | src/YamlCppLib/libyaml/pkg/docker/Dockerfile | | | 32 | -------------------------------- |
1 file changed, 0 insertions(+), 32 deletions(-)
diff --git a/src/YamlCppLib/libyaml/pkg/docker/Dockerfile b/src/YamlCppLib/libyaml/pkg/docker/Dockerfile @@ -1,32 +0,0 @@ -FROM ubuntu:18.04 - -RUN apt-get update \ - && apt-get install -y \ - automake \ - bison \ - build-essential \ - cmake \ - curl \ - doxygen \ - flex \ - git \ - less \ - libtool \ - python \ - vim \ - zip \ - && true - -# http://www.doxygen.nl/manual/install.html - -RUN curl https://sourceforge.net/projects/doxygen/files/rel-1.8.14/doxygen-1.8.14.src.tar.gz/download \ - -L -o /doxygen-1.8.14.src.tar.gz \ - && cd / \ - && tar -xvf doxygen-1.8.14.src.tar.gz \ - && cd doxygen-1.8.14 \ - && mkdir build \ - && cd build \ - && cmake -G "Unix Makefiles" .. \ - && make \ - && make install \ - && true