first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
This commit is contained in:
17
base/librsvg/2.50.7/Dockerfile
Normal file
17
base/librsvg/2.50.7/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM debian:bullseye
|
||||
|
||||
LABEL maintainer="phithon <root@leavesongs.com>"
|
||||
|
||||
RUN set -ex \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y --no-install-recommends wget ca-certificates gcc make rustc cargo automake autoconf libtool libgdk-pixbuf2.0-dev libgirepository1.0-dev \
|
||||
libxml2-dev libcairo2-dev libpango1.0-dev \
|
||||
&& PATH="$PATH:/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0" \
|
||||
&& wget -qO- https://download.gnome.org/sources/librsvg/2.50/librsvg-2.50.7.tar.xz | tar xJ --strip-components 1 -C /usr/src \
|
||||
&& cd /usr/src \
|
||||
&& ./configure --prefix=/usr \
|
||||
&& make \
|
||||
&& make install \
|
||||
&& apt-get purge -y --autoremove gcc make rustc cargo automake autoconf libtool \
|
||||
&& ldconfig /usr/lib \
|
||||
&& rm -rf /var/lib/apt/lists/* /usr/src/*
|
8
base/librsvg/2.50.7/php/Dockerfile
Normal file
8
base/librsvg/2.50.7/php/Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
FROM vulhub/librsvg:2.50.7
|
||||
|
||||
LABEL maintainer="phithon <root@leavesongs.com>"
|
||||
|
||||
RUN set -ex \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y --no-install-recommends php-cli \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
Reference in New Issue
Block a user