- Implements Apache APISIX packaging for Cloudron platform. - Includes Dockerfile, CloudronManifest.json, and start.sh. - Configured to use Cloudron's etcd addon. 🤖 Generated with Gemini CLI Co-Authored-By: Gemini <noreply@google.com>
77 lines
2.6 KiB
Docker
77 lines
2.6 KiB
Docker
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
# this work for additional information regarding copyright ownership.
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
# (the "License"); you may not use this file except in compliance with
|
|
# the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
ARG ENABLE_PROXY=false
|
|
|
|
FROM openresty/openresty:1.21.4.2-alpine-fat AS production-stage
|
|
|
|
ARG ENABLE_PROXY
|
|
ARG APISIX_PATH
|
|
COPY $APISIX_PATH ./apisix
|
|
RUN set -x \
|
|
&& (test "${ENABLE_PROXY}" != "true" || /bin/sed -i 's,http://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories) \
|
|
&& apk add --no-cache --virtual .builddeps \
|
|
automake \
|
|
autoconf \
|
|
libtool \
|
|
pkgconfig \
|
|
cmake \
|
|
git \
|
|
openldap-dev \
|
|
pcre-dev \
|
|
sudo \
|
|
&& cd apisix \
|
|
&& git config --global url.https://github.com/.insteadOf git://github.com/ \
|
|
&& make deps \
|
|
&& cp -v bin/apisix /usr/bin/ \
|
|
&& mv ../apisix /usr/local/apisix \
|
|
&& apk del .builddeps build-base make unzip
|
|
|
|
FROM alpine:3.13 AS last-stage
|
|
|
|
ARG ENABLE_PROXY
|
|
# add runtime for Apache APISIX
|
|
RUN set -x \
|
|
&& (test "${ENABLE_PROXY}" != "true" || /bin/sed -i 's,http://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories) \
|
|
&& apk add --no-cache \
|
|
bash \
|
|
curl \
|
|
libstdc++ \
|
|
openldap \
|
|
pcre \
|
|
tzdata
|
|
|
|
WORKDIR /usr/local/apisix
|
|
|
|
COPY --from=production-stage /usr/local/openresty/ /usr/local/openresty/
|
|
COPY --from=production-stage /usr/local/apisix/ /usr/local/apisix/
|
|
COPY --from=production-stage /usr/bin/apisix /usr/bin/apisix
|
|
|
|
# forward request and error logs to docker log collector
|
|
RUN mkdir -p logs && touch logs/access.log && touch logs/error.log \
|
|
&& ln -sf /dev/stdout /usr/local/apisix/logs/access.log \
|
|
&& ln -sf /dev/stderr /usr/local/apisix/logs/error.log
|
|
|
|
ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
|
|
|
|
EXPOSE 9080 9180 9443
|
|
|
|
CMD ["sh", "-c", "/usr/bin/apisix init && /usr/bin/apisix init_etcd && /usr/local/openresty/bin/openresty -p /usr/local/apisix -g 'daemon off;'"]
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|