Sign inSign up
kong logo

kong:3.4.2-ubuntu

Multi-platform
Also known as:
3.4
3.4-ubuntu
3.4.2
API management
Index digest

sha256:15ca5eb5dbe7c7e53b1b2d39d0ee612438d5c7ebae07c315f4a6948c1e8a241d

OS/ARCH

Compressed size

95.37 MB

Last pushed

10 days by doijanky

Type

Image

Vulnerabilities

2
105
999+
170
0

Manifest digest

sha256:e6840716cc2d98d2e4a44d6a4efaeebbbc3c38c453239c2549aa7159858e7596

Layers (22)

ubuntu:b758094eca3e996ba32aff58c6d9336204f6e4ef0a0c83c654b3e4024e208148
0
0
9
7
0
kong:3.4.2-ubuntu
2
105
999+
163
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

123 B


10

ARG KONG_VERSION=3.4.2

0 B


11

ENV KONG_VERSION=3.4.2

0 B


12

ARG KONG_AMD64_SHA=b6bf56a5088660e7cac748a005af8d977be7177e64b0abfe1e7f77d797cdc0e2

0 B


13

ARG KONG_ARM64_SHA=8bca79a6337a6299316cca4e2f9a766df09268359292686498db18a48d883689

0 B


14

RUN |5 ASSET=ce EE_PORTS= KONG_VERSION=3.4.2 KONG_AMD64_SHA=b6bf56a5088660e7cac748a005af8d977be7177e64b0abfe1e7f77d797cdc0e2 KONG_ARM64_SHA=8bca79a6337a6299316cca4e2f9a766df09268359292686498db18a48d883689 /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

70.25 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