From ba764747d86ec3c14f8197af32f78df2c6769ae2 Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Thu, 11 Sep 2025 00:06:27 +0000 Subject: [PATCH] 24.03-lts-sp2 update uwsgi to 2.0.30 --- Others/uwsgi/2.0.30/24.03-lts-sp2/Dockerfile | 22 ++++++++++++++++++++ Others/uwsgi/README.md | 1 + Others/uwsgi/doc/image-info.yml | 3 ++- Others/uwsgi/meta.yml | 4 +++- 4 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 Others/uwsgi/2.0.30/24.03-lts-sp2/Dockerfile diff --git a/Others/uwsgi/2.0.30/24.03-lts-sp2/Dockerfile b/Others/uwsgi/2.0.30/24.03-lts-sp2/Dockerfile new file mode 100644 index 00000000..bbdbbd98 --- /dev/null +++ b/Others/uwsgi/2.0.30/24.03-lts-sp2/Dockerfile @@ -0,0 +1,22 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp2 +FROM ${BASE} +ARG VERSION=2.0.30 + +RUN dnf update -y \ + && dnf install -y wget python3-devel gcc make libffi-devel zlib-devel openssl-devel \ + pcre-devel systemd-devel libuuid-devel libcap-devel libxml2-devel libyaml-devel \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +WORKDIR /opt + +RUN wget https://github.com/unbit/uwsgi/archive/refs/tags/${VERSION}.tar.gz \ + && tar -zxvf ${VERSION}.tar.gz \ + && rm -f ${VERSION}.tar.gz \ + && mv uwsgi-* uwsgi + +WORKDIR /opt/uwsgi + +RUN make -j + +CMD ["./uwsgi", "--help"] \ No newline at end of file diff --git a/Others/uwsgi/README.md b/Others/uwsgi/README.md index 1ce5b854..b905b80c 100644 --- a/Others/uwsgi/README.md +++ b/Others/uwsgi/README.md @@ -16,6 +16,7 @@ The tag of each `uwsgi` docker image is consist of the version of `uwsgi` and th | Tag | Currently | Architectures | |----------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------|---------------| +|[2.0.30-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/uwsgi/2.0.30/24.03-lts-sp2/Dockerfile) | uwsgi 2.0.30 on openEuler 24.03-LTS-SP2 | amd64, arm64 | | [2.0.29-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/uwsgi/2.0.29/24.03-lts-sp1/Dockerfile) | uWSGI 2.0.29 on openEuler 24.03-LTS-SP1 | amd64, arm64 | # Usage diff --git a/Others/uwsgi/doc/image-info.yml b/Others/uwsgi/doc/image-info.yml index af6e6f51..21aa9f8a 100644 --- a/Others/uwsgi/doc/image-info.yml +++ b/Others/uwsgi/doc/image-info.yml @@ -11,6 +11,7 @@ tags: | | Tag | Currently | Architectures | |----------|-------------|------------------| + |[2.0.30-oe2403sp2](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/uwsgi/2.0.30/24.03-lts-sp2/Dockerfile) | uwsgi 2.0.30 on openEuler 24.03-LTS-SP2 | amd64, arm64 | |[2.0.29-oe2403sp1](https://gitee.com/openeuler/openeuler-docker-images/blob/master/Others/uwsgi/2.0.29/24.03-lts-sp1/Dockerfile)| uWSGI 2.0.29 on openEuler 24.03-LTS-SP1 | amd64, arm64 | download: | @@ -106,4 +107,4 @@ dependency: - openssl - zlib - libffi - - python3 + - python3 \ No newline at end of file diff --git a/Others/uwsgi/meta.yml b/Others/uwsgi/meta.yml index aa218f4e..d2f22bc2 100644 --- a/Others/uwsgi/meta.yml +++ b/Others/uwsgi/meta.yml @@ -2,4 +2,6 @@ path: 2.0.29/24.03-lts-sp1/Dockerfile 2.0.30-oe2403sp1: - path: 2.0.30/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 2.0.30/24.03-lts-sp1/Dockerfile +2.0.30-oe2403sp2: + path: 2.0.30/24.03-lts-sp2/Dockerfile \ No newline at end of file -- Gitee