Skip to content

Commit

Permalink
Address Docker custom build feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
mheap committed Aug 25, 2022
1 parent dab86b9 commit 788b001
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Build your own Docker images

Kong is distributed as prebuilt `apk`, `deb` and `rpm` packages, in addition to official Docker images hosted on [DockerHub](https://hub.docker.com/r/kong)

Kong builds and verifies [Debian](#dockerhub-debian-link-here) and [RHEL](#dockerhub-rhel-link-here) images for use in production. [Alpine](#dockerhub-alpine-link-here) images are provided for **development purposes only**.
Kong builds and verifies [Debian](#dockerhub-debian-link-here) and [RHEL](#dockerhub-rhel-link-here) images for use in production. [Alpine](#dockerhub-alpine-link-here) 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 {{ site.base_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.

Expand Down Expand Up @@ -41,7 +41,6 @@ FROM debian:bullseye-slim
COPY kong.deb /tmp/kong.deb

RUN set -ex; \
apt-get update; \
apt-get update \
&& apt-get install --yes /tmp/kong.deb \
&& rm -rf /var/lib/apt/lists/* \
Expand All @@ -66,7 +65,6 @@ FROM ubuntu:20.04
COPY kong.deb /tmp/kong.deb

RUN set -ex; \
apt-get update; \
apt-get update \
&& apt-get install --yes /tmp/kong.deb \
&& rm -rf /var/lib/apt/lists/* \
Expand Down

0 comments on commit 788b001

Please sign in to comment.