123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- #
- # 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.4.14
- ARG APISIX_VERSION=master
- ARG APISIX_DASHBOARD_VERSION=master
- # Build Apache APISIX
- FROM openresty/openresty:1.19.3.1-alpine-fat AS production-stage
- ARG APISIX_VERSION
- ARG ENABLE_PROXY
- LABEL apisix_version="${APISIX_VERSION}"
- 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 \
- sudo \
- && mkdir ~/.luarocks \
- && luarocks config variables.OPENSSL_LIBDIR /usr/local/openresty/openssl/lib \
- && luarocks config variables.OPENSSL_INCDIR /usr/local/openresty/openssl/include \
- && git config --global url.https://github.com/.insteadOf git://github.com/ \
- && curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sudo sh -s -- -y \
- && source "$HOME/.cargo/env" \
- && export CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse \
- # next line is for rust cdylib compile on musl
- && export RUSTFLAGS="-C target-feature=-crt-static" \
- && luarocks install https://github.com/apache/apisix/raw/master/rockspec/apisix-${APISIX_VERSION}-0.rockspec --tree=/usr/local/apisix/deps PCRE_DIR=/usr/local/openresty/pcre \
- && cp -v /usr/local/apisix/deps/lib/luarocks/rocks-5.1/apisix/${APISIX_VERSION}-0/bin/apisix /usr/bin/ \
- && (if [ "$APISIX_VERSION" = "master" ] || [ "$APISIX_VERSION" \> "2.2" ]; then echo 'use shell ';else bin='#! /usr/local/openresty/luajit/bin/luajit\npackage.path = "/usr/local/apisix/?.lua;" .. package.path'; sed -i "1s@.*@$bin@" /usr/bin/apisix ; fi;) \
- && mv /usr/local/apisix/deps/share/lua/5.1/apisix /usr/local/apisix \
- && apk del .builddeps build-base make unzip
- # Build etcd
- FROM alpine:3.13 AS etcd-stage
- ARG ETCD_VERSION
- LABEL etcd_version="${ETCD_VERSION}"
- WORKDIR /tmp
- 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 \
- && ln -s etcd-${ETCD_VERSION}-linux-amd64 etcd
- # Build APISIX Dashboard - 1. download source code from github
- FROM alpine:latest as pre-build
- ARG APISIX_DASHBOARD_TAG
- RUN set -x \
- && wget https://github.com/apache/apisix-dashboard/archive/${APISIX_DASHBOARD_TAG}.tar.gz -O /tmp/apisix-dashboard.tar.gz \
- && mkdir /usr/local/apisix-dashboard \
- && tar -xvf /tmp/apisix-dashboard.tar.gz -C /usr/local/apisix-dashboard --strip 1
- # Build APISIX Dashboard - 2. build manager-api from source code
- FROM golang:1.17 as api-builder
- ARG APISIX_DASHBOARD_VERSION
- ARG ENABLE_PROXY
- WORKDIR /usr/local/apisix-dashboard
- COPY --from=pre-build /usr/local/apisix-dashboard .
- RUN if [ "$ENABLE_PROXY" = "true" ] ; then go env -w GOPROXY=https://goproxy.io,direct ; fi \
- && go env -w GO111MODULE=on \
- && CGO_ENABLED=0 ./api/build.sh
- # Build APISIX Dashboard - 3. build dashboard web-UI from source code
- FROM node:14-alpine as fe-builder
- ARG ENABLE_PROXY
- WORKDIR /usr/local/apisix-dashboard
- COPY --from=pre-build /usr/local/apisix-dashboard .
- WORKDIR /usr/local/apisix-dashboard/web
- RUN if [ "$ENABLE_PROXY" = "true" ] ; then yarn config set registry https://registry.npmmirror.com/ ; fi \
- && yarn install \
- && yarn build
- # Finally combine all the resources into one image
- 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 libstdc++ curl
- 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
- COPY --from=etcd-stage /tmp/etcd/etcd /usr/bin/etcd
- COPY --from=etcd-stage /tmp/etcd/etcdctl /usr/bin/etcdctl
- ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
- # dashboard
- RUN if [ "$ENABLE_PROXY" = "true" ] ; then sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories ; fi \
- && apk add lua5.1
- WORKDIR /usr/local/apisix-dashboard
- COPY --from=api-builder /usr/local/apisix-dashboard/output/ ./
- COPY --from=fe-builder /usr/local/apisix-dashboard/output/ ./
- RUN mkdir logs
- EXPOSE 9080 9443 2379 2380 9000
- CMD ["sh", "-c", "(nohup etcd >/tmp/etcd.log 2>&1 &) && sleep 10 && (/usr/local/apisix-dashboard/manager-api &) && cd /usr/local/apisix && /usr/bin/apisix init && /usr/bin/apisix init_etcd && /usr/local/openresty/bin/openresty -p /usr/local/apisix -g 'daemon off;'"]
- STOPSIGNAL SIGQUIT
|