Dockerfile 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 api7/apisix-base:1.19.9.1.3 AS production-stage
  19. ARG ENABLE_PROXY
  20. RUN set -x \
  21. && (test "${ENABLE_PROXY}" != "true" || /bin/sed -i 's,http://dl-cdn.alpinelinux.org,https://mirrors.aliyun.com,g' /etc/apk/repositories) \
  22. && apk add --no-cache --virtual .builddeps \
  23. build-base \
  24. automake \
  25. autoconf \
  26. make \
  27. libtool \
  28. pkgconfig \
  29. cmake \
  30. unzip \
  31. curl \
  32. openssl \
  33. git \
  34. pcre \
  35. pcre-dev \
  36. openldap-dev \
  37. && luarocks install https://github.com/apache/apisix/raw/master/rockspec/apisix-master-0.rockspec --tree=/usr/local/apisix/deps \
  38. && cp -v /usr/local/apisix/deps/lib/luarocks/rocks-5.1/apisix/master-0/bin/apisix /usr/bin/ \
  39. && mv /usr/local/apisix/deps/share/lua/5.1/apisix /usr/local/apisix \
  40. && apk del .builddeps \
  41. && apk add --no-cache \
  42. bash \
  43. curl \
  44. libstdc++ \
  45. openldap \
  46. tzdata \
  47. # forward request and error logs to docker log collector
  48. && ln -sf /dev/stdout /usr/local/apisix/logs/access.log \
  49. && ln -sf /dev/stderr /usr/local/apisix/logs/error.log
  50. WORKDIR /usr/local/apisix
  51. ENV PATH=$PATH:/usr/local/openresty/luajit/bin:/usr/local/openresty/nginx/sbin:/usr/local/openresty/bin
  52. EXPOSE 9080 9443
  53. CMD ["sh", "-c", "/usr/bin/apisix init && /usr/bin/apisix init_etcd && /usr/local/openresty/bin/openresty -p /usr/local/apisix -g 'daemon off;'"]
  54. STOPSIGNAL SIGQUIT