apisix image with python3 and flask
105
FROM apache/apisix:2.13.0-centos
# install repository
RUN sed -e 's|^mirrorlist=|#mirrorlist=|g' \
-e 's|^#baseurl=http://mirror.centos.org|baseurl=https://mirrors.tuna.tsinghua.edu.cn|g' \
-i.bak \
/etc/yum.repos.d/CentOS-*.repo
RUN yum makecache
# install python3
RUN yum install -y python3
# install flask
RUN python3 -m pip install flask
Content type
Image
Digest
Size
277.8 MB
Last updated
over 4 years ago
docker pull yanbo92/apisix-python3