Dockerfile 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. ARG ENABLE_PROXY=false
  18. FROM openresty/openresty:1.19.3.2-alpine-fat AS production-stage
  19. ARG ENABLE_PROXY
  20. ARG APISIX_PATH
  21. COPY $APISIX_PATH ./apisix
  22. RUN set -x \
  23. && (test "${ENABLE_PROXY}" != "true" || /bin/sed -i 's,http://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories) \
  24. && apk add --no-cache --virtual .builddeps \
  25. automake \
  26. autoconf \
  27. libtool \
  28. pkgconfig \
  29. cmake \
  30. git \
  31. pcre \
  32. pcre-dev \
  33. openldap-dev \
  34. && cd apisix \
  35. && git config --global url.https://github.com/.insteadOf git://github.com/ \
  36. && make deps \
  37. && cp -v bin/apisix /usr/bin/ \
  38. && mv ../apisix /usr/local/apisix \
  39. && apk del .builddeps build-base make unzip
  40. FROM alpine:3.13 AS last-stage
  41. ARG ENABLE_PROXY
  42. # add runtime for Apache APISIX
  43. RUN set -x \
  44. && (test "${ENABLE_PROXY}" != "true" || /bin/sed -i 's,http://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories) \
  45. && apk add --no-cache bash libstdc++ curl tzdata openldap-dev
  46. WORKDIR /usr/local/apisix
  47. COPY --from=production-stage /usr/local/openresty/ /usr/local/openresty/
  48. COPY --from=production-stage /usr/local/apisix/ /usr/local/apisix/
  49. COPY --from=production-stage /usr/bin/apisix /usr/bin/apisix
  50. # forward request and error logs to docker log collector
  51. RUN mkdir -p logs && touch logs/access.log && touch logs/error.log \
  52. && ln -sf /dev/stdout /usr/local/apisix/logs/access.log \
  53. && ln -sf /dev/stderr /usr/local/apisix/logs/error.log
  54. ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
  55. EXPOSE 9080 9443
  56. CMD ["sh", "-c", "/usr/bin/apisix init && /usr/bin/apisix init_etcd && /usr/local/openresty/bin/openresty -p /usr/local/apisix -g 'daemon off;'"]
  57. STOPSIGNAL SIGQUIT