diff --git a/Others/varnish/7.7.3/24.03-lts-sp1/Dockerfile b/Others/varnish/7.7.3/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..df5304d113a393b6cc637a5e59a0b82b7c455f36 --- /dev/null +++ b/Others/varnish/7.7.3/24.03-lts-sp1/Dockerfile @@ -0,0 +1,25 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} +ARG VERSION=7.7.3 + +RUN dnf update -y \ + && dnf install -y wget diffutils jemalloc-devel libunwind-devel \ + python3-sphinx make autoconf automake libedit-devel libtool \ + ncurses-devel pcre2-devel pkgconfig python3-docutils cpio graphviz \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +WORKDIR /opt + +RUN wget https://varnish-cache.org/downloads/varnish-${VERSION}.tgz \ + && tar -zxvf varnish-${VERSION}.tgz \ + && rm -f varnish-${VERSION}.tgz + +WORKDIR /opt/varnish-${VERSION} + +RUN ./autogen.sh \ + && ./configure \ + && make -j \ + && make install + +CMD ["varnishd", "--help"] \ No newline at end of file diff --git a/Others/varnish/README.md b/Others/varnish/README.md index ed796d40ee10a193faa80174686ad0b530c65b4a..83f44d0d12a4fa39cc114e9221b612be1af31afe 100644 --- a/Others/varnish/README.md +++ b/Others/varnish/README.md @@ -18,6 +18,7 @@ The tag of each `varnish` docker image is consist of the version of `varnish` an | Tag | Currently | Architectures | |----------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------|------------------| +|[7.7.3-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/varnish/7.7.3/24.03-lts-sp1/Dockerfile) | varnish 7.7.3 on openEuler 24.03-LTS-SP1 | amd64, arm64 | | [7.7.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/varnish/7.7.1/24.03-lts-sp1/Dockerfile) | Varnish Cache 7.7.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Others/varnish/doc/image-info.yml b/Others/varnish/doc/image-info.yml index 14e235d2136fd9e8a790074aaef0fd8171e3e306..0f149e8315d0c365837ddab3debac610de3a413e 100644 --- a/Others/varnish/doc/image-info.yml +++ b/Others/varnish/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[7.7.3-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/varnish/7.7.3/24.03-lts-sp1/Dockerfile) | varnish 7.7.3 on openEuler 24.03-LTS-SP1 | amd64, arm64 | |[7.7.1-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/varnish/7.7.1/24.03-lts-sp1/Dockerfile)| varnish 7.7.1 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | @@ -75,4 +76,4 @@ dependency: - pcre - libtool - jemalloc - - libunwind + - libunwind \ No newline at end of file diff --git a/Others/varnish/meta.yml b/Others/varnish/meta.yml index 39aaadc4fc48880b6b77bc325bd5d74ac6c4e052..6046333cdc404eba80cdb9cd21bed605ca497220 100644 --- a/Others/varnish/meta.yml +++ b/Others/varnish/meta.yml @@ -2,4 +2,6 @@ path: 7.7.1/24.03-lts-sp1/Dockerfile 7.7.2-oe2403sp1: - path: 7.7.2/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 7.7.2/24.03-lts-sp1/Dockerfile +7.7.3-oe2403sp1: + path: 7.7.3/24.03-lts-sp1/Dockerfile \ No newline at end of file