Sign inSign up
kong logo

kong:3.8

Multi-platform
Also known as:
3.8-ubuntu
3.8.0
API management
Index digest

sha256:fd78090e9e775323bed8a8f0f8bbea0cf732cea96370d4352d126789e8e1ce1f

OS/ARCH

Compressed size

111.8 MB

Last pushed

10 days by doijanky

Type

Image

Vulnerabilities

0
0
38
7
0

Manifest digest

sha256:a6453376bdee80ecf7839d1a9ebd0b3f957c72b25d80810d792d603d53fa8265

Layers (22)

ubuntu:d9099821979680d885df86c71840f4a0c81042a0c9576340511ee6124dd90f63
0
0
9
7
0
kong:3.8
0
0
29
0
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.8.0

0 B


11

ENV KONG_VERSION=3.8.0

0 B


12

ARG KONG_AMD64_SHA=d7f3bb1b34128ebefc7c1dadf552b88903631d33e479715545c1e1b8f9468987

0 B


13

ARG KONG_ARM64_SHA=21a35f15c1ee96996da8739c9bcc937e164b5a075db64c0a7e17b5443af458bf

0 B


14

RUN |5 ASSET=ce EE_PORTS= KONG_VERSION=3.8.0 KONG_AMD64_SHA=d7f3bb1b34128ebefc7c1dadf552b88903631d33e479715545c1e1b8f9468987 KONG_ARM64_SHA=21a35f15c1ee96996da8739c9bcc937e164b5a075db64c0a7e17b5443af458bf /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

89.55 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