From 0a047a0a06cee728c5428d215a121c0d558ad9da Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Tue, 21 Nov 2023 15:54:09 +1100 Subject: [PATCH] add mongodb-tools from 3.17 --- database-tools/Dockerfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/database-tools/Dockerfile b/database-tools/Dockerfile index 312811b1..8230510c 100644 --- a/database-tools/Dockerfile +++ b/database-tools/Dockerfile @@ -1,8 +1,14 @@ FROM alpine:3.18.4 -RUN apk add --no-cache bash \ + +LABEL org.opencontainers.image.authors="The Lagoon Authors" maintainer="The Lagoon Authors" +LABEL org.opencontainers.image.source="https://github.com/uselagoon/lagoon-service-images" repository="https://github.com/uselagoon/lagoon-service-images" + +RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.17/community' >> /etc/apk/repositories \ + && apk update \ + && apk add --no-cache bash \ grep \ sed \ + mongodb-tools=4.2.14-r17 \ mysql-client \ - mongodb-tools \ postgresql-client \ - && rm -rf /var/cache/apk/* \ No newline at end of file + && rm -rf /var/cache/apk/*