58 lines
1.9 KiB
Docker
58 lines
1.9 KiB
Docker
FROM centos:8
|
|
LABEL maintainer="Kong <support@konghq.com>"
|
|
|
|
ARG ASSET=ce
|
|
ENV ASSET $ASSET
|
|
|
|
ARG EE_PORTS
|
|
|
|
COPY kong.rpm /tmp/kong.rpm
|
|
|
|
ARG KONG_VERSION=2.7.1
|
|
ENV KONG_VERSION $KONG_VERSION
|
|
|
|
ARG KONG_SHA256="d3769c15297d1b1b20cf684792a664ac851977b2c466f2776f2ae705708539e6"
|
|
|
|
# hadolint ignore=DL3033
|
|
RUN set -ex; \
|
|
if [ "$ASSET" = "ce" ] ; then \
|
|
curl -fL https://download.konghq.com/gateway-${KONG_VERSION%%.*}.x-centos-8/Packages/k/kong-$KONG_VERSION.el8.amd64.rpm -o /tmp/kong.rpm \
|
|
&& echo "$KONG_SHA256 /tmp/kong.rpm" | sha256sum -c -; \
|
|
else \
|
|
# this needs to stay inside this "else" block so that it does not become part of the "official images" builds (https://github.com/docker-library/official-images/pull/11532#issuecomment-996219700)
|
|
yum update -y \
|
|
&& yum upgrade -y ; \
|
|
fi; \
|
|
yum install -y -q unzip shadow-utils git \
|
|
&& yum clean all -q \
|
|
&& rm -fr /var/cache/yum/* /tmp/yum_save*.yumtx /root/.pki \
|
|
# Please update the centos install docs if the below line is changed so that
|
|
# end users can properly install Kong along with its required dependencies
|
|
# and that our CI does not diverge from our docs.
|
|
&& yum install -y /tmp/kong.rpm \
|
|
&& yum clean all \
|
|
&& rm /tmp/kong.rpm \
|
|
&& chown kong:0 /usr/local/bin/kong \
|
|
&& chown -R kong:0 /usr/local/kong \
|
|
&& ln -s /usr/local/openresty/bin/resty /usr/local/bin/resty \
|
|
&& ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/luajit \
|
|
&& ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/lua \
|
|
&& ln -s /usr/local/openresty/nginx/sbin/nginx /usr/local/bin/nginx \
|
|
&& if [ "$ASSET" = "ce" ] ; then \
|
|
kong version; \
|
|
fi
|
|
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
|
|
USER kong
|
|
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|
|
|
|
EXPOSE 8000 8443 8001 8444 $EE_PORTS
|
|
|
|
STOPSIGNAL SIGQUIT
|
|
|
|
HEALTHCHECK --interval=10s --timeout=10s --retries=10 CMD kong health
|
|
|
|
CMD ["kong", "docker-start"]
|