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 0000000000000000000000000000000000000000..bbdbbd981f545dfd8d83f0912891afa9483f7753 --- /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 1ce5b854bb9dacc338be5ade387d853859a559c8..b905b80c315effead5c85412f796415f9c861137 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 af6e6f512c2777361a34e07ebd179d3030160c00..21aa9f8a397113573252859e2f6b30c2305acdfe 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 aa218f4ebaf27da2916471532c69416b538a27c1..d2f22bc2e4ed4cd4a31f4ea9adca2e79eecf2008 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