From bd23862491a9efa75a6de45f82840c1105a9177a Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Thu, 1 Jun 2023 13:13:40 +0200 Subject: [PATCH 1/2] trino: Add htpasswd tool --- trino/CHANGELOG.md | 4 ++++ trino/Dockerfile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/trino/CHANGELOG.md b/trino/CHANGELOG.md index 2639e1232..698ee5b5c 100644 --- a/trino/CHANGELOG.md +++ b/trino/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Added + +- Add `htpasswd` tool ([#XXX]). + ## [414] - 2023-04-26 ### Added diff --git a/trino/Dockerfile b/trino/Dockerfile index 9f3bf6ce0..893660733 100644 --- a/trino/Dockerfile +++ b/trino/Dockerfile @@ -18,7 +18,7 @@ LABEL name="Trino" \ SHELL ["/bin/bash", "-o", "pipefail", "-c"] RUN microdnf update && \ - microdnf install tar gzip zip python3 openssl && \ + microdnf install tar gzip zip python3 openssl httpd-tools && \ microdnf clean all && \ alternatives --set python /usr/bin/python3 From 4b80ed0243d01c04b541a9d300b860c353a135a2 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Thu, 1 Jun 2023 13:15:00 +0200 Subject: [PATCH 2/2] changelog --- trino/CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/trino/CHANGELOG.md b/trino/CHANGELOG.md index 698ee5b5c..53182ea20 100644 --- a/trino/CHANGELOG.md +++ b/trino/CHANGELOG.md @@ -6,7 +6,9 @@ All notable changes to this project will be documented in this file. ### Added -- Add `htpasswd` tool ([#XXX]). +- Add `htpasswd` tool ([#385]). + +[#385]: https://github.com/stackabletech/docker-images/pull/385 ## [414] - 2023-04-26