mirror of
https://github.com/bitnami/containers.git
synced 2026-03-21 15:29:05 +08:00
24 lines
851 B
Docker
24 lines
851 B
Docker
FROM bitnami/oraclelinux-extras-base:7-r433
|
|
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
|
|
|
ENV HOME="/" \
|
|
OS_ARCH="x86_64" \
|
|
OS_FLAVOUR="ol-7" \
|
|
OS_NAME="linux"
|
|
|
|
# Install required system packages and dependencies
|
|
RUN install_packages glibc keyutils-libs krb5-libs libcom_err libgcc libselinux libyaml nss-softokn-freebl openssl-libs pcre perl zlib
|
|
RUN . ./libcomponent.sh && component_unpack "kong" "1.3.0-1" --checksum 6d1261bcd149f1f265910a05f23f95e6033c7a21c0f0d5137bd82fff28d0f335
|
|
|
|
COPY rootfs /
|
|
RUN /postunpack.sh
|
|
ENV BITNAMI_APP_NAME="kong" \
|
|
BITNAMI_IMAGE_VERSION="1.3.0-ol-7-r13" \
|
|
PATH="/opt/bitnami/kong/bin:/opt/bitnami/kong/openresty/bin:/opt/bitnami/kong/openresty/luajit/bin:/opt/bitnami/kong/openresty/nginx/sbin:$PATH"
|
|
|
|
EXPOSE 8000 8001 8443 8444
|
|
|
|
USER 1001
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|
|
CMD [ "/run.sh" ]
|