Skip to content

Commit 475d9bf

Browse files
committed
Updated base docker image to support PG18. Changed way of installing Minio mc command line tool.
1 parent 18ee2bc commit 475d9bf

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
FROM postgres:16
1+
FROM postgres:18
22

3-
RUN apt update && apt install -y wget gnupg pigz pbzip2 xz-utils lrzip brotli zstd \
4-
&& wget https://dl.minio.io/client/mc/release/linux-amd64/mc -O /sbin/mc && chmod +x /sbin/mc \
5-
&& apt remove -y wget && apt autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
3+
RUN apt update && apt install -y gnupg pigz pbzip2 xz-utils lrzip brotli zstd \
4+
&& apt autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
5+
6+
COPY --from=minio/mc /usr/bin/mc /usr/local/bin/mc
67

78
COPY entrypoint.sh .
89
ENTRYPOINT ["/entrypoint.sh"]

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,9 @@ See `kubernetes-cronjob.yml` file.
3737

3838
## Authors & contributors
3939
- [Standart AG, LLC](https://standart.lv/)
40+
- [OPSPRO](https://opspro.eu/)
4041
- [Pavel Khorikov](https://github.com/JargeZ)
42+
43+
## Changelog
44+
45+
[2025-11-01] Updated base docker image. Changed way of installing Minio mc command line tool.

0 commit comments

Comments
 (0)