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/*