1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #
- # 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.
- #
- FROM debian:bullseye-slim
- ARG APISIX_VERSION=2.15.3
- RUN set -ex; \
- arch=$(dpkg --print-architecture); \
- apt update; \
- apt-get -y install --no-install-recommends gnupg ca-certificates curl; \
- codename=`grep -Po 'VERSION="[0-9]+ \(\K[^)]+' /etc/os-release`; \
- curl -sSL https://openresty.org/package/pubkey.gpg | apt-key add -; \
- case "${arch}" in \
- amd64) \
- echo "deb http://openresty.org/package/debian $codename openresty" | tee /etc/apt/sources.list.d/openresty.list \
- && curl -sSL http://repos.apiseven.com/pubkey.gpg | apt-key add - \
- && echo "deb http://repos.apiseven.com/packages/debian $codename main" | tee /etc/apt/sources.list.d/apisix.list \
- ;; \
- arm64) \
- echo "deb http://openresty.org/package/arm64/debian $codename openresty" | tee /etc/apt/sources.list.d/openresty.list \
- && curl -sSL http://repos.apiseven.com/pubkey.gpg | apt-key add - \
- && echo "deb http://repos.apiseven.com/packages/arm64/debian $codename main" | tee /etc/apt/sources.list.d/apisix.list \
- ;; \
- esac; \
- apt update \
- && apt install -y apisix=${APISIX_VERSION}-0 \
- && apt-get purge -y --auto-remove \
- && rm -f /etc/apt/sources.list.d/openresty.list /etc/apt/sources.list.d/apisix.list \
- && openresty -V \
- && apisix version
- WORKDIR /usr/local/apisix
- # forward request and error logs to docker log collector
- RUN ln -sf /dev/stdout /usr/local/apisix/logs/access.log \
- && ln -sf /dev/stderr /usr/local/apisix/logs/error.log
- EXPOSE 9080 9443
- COPY ./docker-entrypoint.sh /docker-entrypoint.sh
- ENTRYPOINT ["/docker-entrypoint.sh"]
- CMD ["docker-start"]
- STOPSIGNAL SIGQUIT
|