Sign inSign up
kong logo

kong:3.9

Multi-platform
Also known as:
3
3.9-ubuntu
3.9.3
3.9.3-ubuntu
latest
ubuntu
API management
Index digest

sha256:12972ce1ab6396083e56e7d46fce084836c98cc819344bef44a1f583ec3ab191

OS/ARCH

Compressed size

113.44 MB

Last pushed

3 days by doijanky

Type

Image

Vulnerabilities

0
0
37
3
0

Manifest digest

sha256:8baacf0a857bef2a097d7a80962dc001758a597c75d50d7e2aa5748b652b0fba

Layers (22)

ubuntu:849871efdee79c5303282ce28ef27a78229f94f95ebf449e1f40c7f23c58c52e
0
0
7
2
0
kong:3.9
0
0
32
1
0

5

LABEL maintainer=Kong Docker Maintainers <[email protected]> (@team-gateway-bot)

0 B


6

ARG ASSET=ce

0 B


7

ENV ASSET=ce

0 B


8

ARG EE_PORTS

0 B


9

COPY kong.deb /tmp/kong.deb # buildkit

125 B


10

ARG KONG_VERSION=3.9.3

0 B


11

ENV KONG_VERSION=3.9.3

0 B


12

ARG KONG_AMD64_SHA=3b0bcaf6701b02c10fc2afd692f8e4411b981f0ed1b765f3c3b0f036fe373872

0 B


13

ARG KONG_ARM64_SHA=fd62644015296c70f29802da287dec8f7d46ac0715f844e52c84a0df6b479763

0 B


14

RUN |5 ASSET=ce EE_PORTS= KONG_VERSION=3.9.3 KONG_AMD64_SHA=3b0bcaf6701b02c10fc2afd692f8e4411b981f0ed1b765f3c3b0f036fe373872 KONG_ARM64_SHA=fd62644015296c70f29802da287dec8f7d46ac0715f844e52c84a0df6b479763 /bin/sh -c set -ex; arch=$(dpkg --print-architecture); case "${arch}" in amd64) KONG_SHA256=$KONG_AMD64_SHA ;; arm64) KONG_SHA256=$KONG_ARM64_SHA ;; esac; apt-get update && if [ "$ASSET" = "ce" ] ; then apt-get install -y --no-install-recommends curl ca-certificates && UBUNTU_CODENAME=$(cat /etc/os-release | grep UBUNTU_CODENAME | cut -d = -f 2) && KONG_REPO=$(echo ${KONG_VERSION%.*} | sed 's/\.//') && curl -fL https://packages.konghq.com/public/gateway-$KONG_REPO/deb/ubuntu/pool/$UBUNTU_CODENAME/main/k/ko/kong_$KONG_VERSION/kong_${KONG_VERSION}_$arch.deb -o /tmp/kong.deb && apt-get purge -y curl && echo "$KONG_SHA256 /tmp/kong.deb" | sha256sum -c - || exit 1; else apt-get upgrade -y ; fi; apt-get install -y --no-install-recommends unzip git && apt install --yes --no-install-recommends /tmp/kong.deb && rm -rf /var/lib/apt/lists/* && rm -rf /tmp/kong.deb && chown kong:0 /usr/local/bin/kong && chown -R kong:0 /usr/local/kong && ln -sf /usr/local/openresty/bin/resty /usr/local/bin/resty && ln -sf /usr/local/openresty/luajit/bin/luajit /usr/local/bin/luajit && ln -sf /usr/local/openresty/luajit/bin/luajit /usr/local/bin/lua && ln -sf /usr/local/openresty/nginx/sbin/nginx /usr/local/bin/nginx && if [ "$ASSET" = "ce" ] ; then kong version ; fi # buildkit

90.01 MB


15

COPY docker-entrypoint.sh /docker-entrypoint.sh # buildkit

1.16 KB


16

USER kong

0 B


17

ENTRYPOINT ["/docker-entrypoint.sh"]

0 B


18

EXPOSE map[8000/tcp:{} 8001/tcp:{} 8443/tcp:{} 8444/tcp:{}]

0 B


19

STOPSIGNAL SIGQUIT

0 B


20

HEALTHCHECK &{["CMD-SHELL" "kong health"] "10s" "10s" "0s" "0s" '\n'}

0 B


21

CMD ["kong" "docker-start"]

0 B