Build your own Docker images

Kong is distributed as prebuilt apk, deb and rpm packages, in addition to official Docker images hosted on DockerHub

Kong builds and verifies Debian and RHEL images for use in production. Alpine images are provided for development purposes only as they contain development tooling such as git for plugin development purposes.

Our Debian and RHEL images are built with minimal dependencies (as of Kong Gateway 3.0) and run through automated security scanners before being published. Any vulnerabilities detected in supported images will be addressed in the next available patch release.

If you would like to build your own images to further customise the base image and any dependencies, follow the instructions below:

  1. Download the docker-entrypoint.sh script from docker-kong and make it executable with chmod +x docker-entrypoint.sh

  2. Download the .deb, .rpm or .apk (amd64, arm64) as required

  3. Create a Dockerfile with the following contents:

    Debian

    Ubuntu

    RHEL

    Alpine

    1. FROM debian:bullseye-slim
    2. COPY kong.deb /tmp/kong.deb
    3. RUN set -ex; \
    4. apt-get update \
    5. && apt-get install --yes /tmp/kong.deb \
    6. && rm -rf /var/lib/apt/lists/* \
    7. && rm -rf /tmp/kong.deb \
    8. && chown kong:0 /usr/local/bin/kong \
    9. && chown -R kong:0 /usr/local/kong \
    10. && ln -s /usr/local/openresty/bin/resty /usr/local/bin/resty \
    11. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/luajit \
    12. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/lua \
    13. && ln -s /usr/local/openresty/nginx/sbin/nginx /usr/local/bin/nginx \
    14. && kong version
    15. COPY docker-entrypoint.sh /docker-entrypoint.sh
    16. USER kong
    17. ENTRYPOINT ["/docker-entrypoint.sh"]
    18. EXPOSE 8000 8443 8001 8444 8002 8445 8003 8446 8004 8447
    19. STOPSIGNAL SIGQUIT
    20. HEALTHCHECK --interval=10s --timeout=10s --retries=10 CMD kong health
    21. CMD ["kong", "docker-start"]
    1. FROM ubuntu:20.04
    2. COPY kong.deb /tmp/kong.deb
    3. RUN set -ex; \
    4. apt-get update \
    5. && apt-get install --yes /tmp/kong.deb \
    6. && rm -rf /var/lib/apt/lists/* \
    7. && rm -rf /tmp/kong.deb \
    8. && chown kong:0 /usr/local/bin/kong \
    9. && chown -R kong:0 /usr/local/kong \
    10. && ln -s /usr/local/openresty/bin/resty /usr/local/bin/resty \
    11. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/luajit \
    12. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/lua \
    13. && ln -s /usr/local/openresty/nginx/sbin/nginx /usr/local/bin/nginx \
    14. && kong version
    15. COPY docker-entrypoint.sh /docker-entrypoint.sh
    16. USER kong
    17. ENTRYPOINT ["/docker-entrypoint.sh"]
    18. EXPOSE 8000 8443 8001 8444 8002 8445 8003 8446 8004 8447
    19. STOPSIGNAL SIGQUIT
    20. HEALTHCHECK --interval=10s --timeout=10s --retries=10 CMD kong health
    21. CMD ["kong", "docker-start"]
    1. FROM registry.access.redhat.com/ubi8/ubi:8.1
    2. COPY kong.rpm /tmp/kong.rpm
    3. RUN set -ex; \
    4. yum install -y /tmp/kong.rpm \
    5. && rm /tmp/kong.rpm \
    6. && chown kong:0 /usr/local/bin/kong \
    7. && chown -R kong:0 /usr/local/kong \
    8. && ln -s /usr/local/openresty/bin/resty /usr/local/bin/resty \
    9. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/luajit \
    10. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/lua \
    11. && ln -s /usr/local/openresty/nginx/sbin/nginx /usr/local/bin/nginx \
    12. && kong version
    13. COPY docker-entrypoint.sh /docker-entrypoint.sh
    14. USER kong
    15. ENTRYPOINT ["/docker-entrypoint.sh"]
    16. EXPOSE 8000 8443 8001 8444 8002 8445 8003 8446 8004 8447
    17. STOPSIGNAL SIGQUIT
    18. HEALTHCHECK --interval=10s --timeout=10s --retries=10 CMD kong health
    19. CMD ["kong", "docker-start"]
    1. FROM alpine:latest
    2. COPY kong.apk.tar.gz /tmp/kong.apk.tar.gz
    3. RUN set -ex; \
    4. apk add bash curl ca-certificates; \
    5. arch="$(apk --print-arch)"; \
    6. case "${arch}" in \
    7. x86_64) export ARCH='amd64'; KONG_SHA256=$KONG_AMD64_SHA ;; \
    8. aarch64) export ARCH='arm64'; KONG_SHA256=$KONG_ARM64_SHA ;; \
    9. esac; \
    10. apk add --no-cache --virtual .build-deps tar gzip \
    11. && tar -C / -xzf /tmp/kong.apk.tar.gz \
    12. && apk add --no-cache libstdc++ libgcc openssl pcre perl tzdata libcap zlib zlib-dev bash \
    13. && adduser -S kong \
    14. && addgroup -S kong \
    15. && mkdir -p "/usr/local/kong" \
    16. && chown -R kong:0 /usr/local/kong \
    17. && chown kong:0 /usr/local/bin/kong \
    18. && chmod -R g=u /usr/local/kong \
    19. && rm -rf /tmp/kong.tar.gz \
    20. && ln -s /usr/local/openresty/bin/resty /usr/local/bin/resty \
    21. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/luajit \
    22. && ln -s /usr/local/openresty/luajit/bin/luajit /usr/local/bin/lua \
    23. && ln -s /usr/local/openresty/nginx/sbin/nginx /usr/local/bin/nginx \
    24. && apk del .build-deps \
    25. && kong version
    26. COPY docker-entrypoint.sh /docker-entrypoint.sh
    27. USER kong
    28. ENTRYPOINT ["/docker-entrypoint.sh"]
    29. EXPOSE 8000 8443 8001 8444 8002 8445 8003 8446 8004 8447
    30. STOPSIGNAL SIGQUIT
    31. HEALTHCHECK --interval=10s --timeout=10s --retries=10 CMD kong health
    32. CMD ["kong", "docker-start"]
  4. Build your image with docker build --no-cache -t kong-your-tag .

  5. Test that the image built correctly with docker run -it kong-your-tag kong version

  6. To run Kong Gateway and process traffic, follow the Docker install instructions, replacing the image name with your custom name