123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #
- # 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
- ARG ETCD_VERSION=v3.5.4
- # Build Apache APISIX
- FROM apache/apisix:latest
- ARG ETCD_VERSION
- LABEL etcd_version="${ETCD_VERSION}"
- WORKDIR /tmp
- USER root
- RUN wget https://github.com/etcd-io/etcd/releases/download/${ETCD_VERSION}/etcd-${ETCD_VERSION}-linux-amd64.tar.gz \
- && tar -zxvf etcd-${ETCD_VERSION}-linux-amd64.tar.gz \
- && mv etcd-${ETCD_VERSION}-linux-amd64/* /usr/bin/
- WORKDIR /usr/local/apisix
- ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
- EXPOSE 9180 9080 9443 2379 2380
- CMD ["sh", "-c", "(nohup etcd >/tmp/etcd.log 2>&1 &) && sleep 10 && /usr/bin/apisix init && /usr/bin/apisix init_etcd && /usr/local/openresty/bin/openresty -p /usr/local/apisix -g 'daemon off;'"]
- STOPSIGNAL SIGQUIT
|