Compare commits

...

1 Commits

Author SHA1 Message Date
dave@tiredofit.ca
edeadade4d Release 3.11.1 - See CHANGELOG.md 2023-10-23 08:14:29 -07:00
2 changed files with 14 additions and 4 deletions

View File

@@ -1,3 +1,13 @@
## 3.11.1 2023-10-23 <dave at tiredofit dot ca>
### Added
- Switch to tiredofit/alpine:edge for newer packages
- Postgresql 16 support
### Changed
- Add --break-system-packages flag to pip when installing blobxfer
## 3.11.0 2023-10-12 <dave at tiredofit dot ca> ## 3.11.0 2023-10-12 <dave at tiredofit dot ca>
### Added ### Added

View File

@@ -1,5 +1,5 @@
ARG DISTRO=alpine ARG DISTRO=alpine
ARG DISTRO_VARIANT=3.18 ARG DISTRO_VARIANT=edge
FROM docker.io/tiredofit/${DISTRO}:${DISTRO_VARIANT} FROM docker.io/tiredofit/${DISTRO}:${DISTRO_VARIANT}
LABEL maintainer="Dave Conroy (github.com/tiredofit)" LABEL maintainer="Dave Conroy (github.com/tiredofit)"
@@ -44,8 +44,8 @@ RUN source /assets/functions/00-container && \
mongodb-tools \ mongodb-tools \
openssl \ openssl \
pigz \ pigz \
postgresql15 \ postgresql16 \
postgresql15-client \ postgresql16-client \
pv \ pv \
py3-botocore \ py3-botocore \
py3-colorama \ py3-colorama \
@@ -94,7 +94,7 @@ RUN source /assets/functions/00-container && \
make && \ make && \
make install && \ make install && \
\ \
pip3 install blobxfer && \ pip3 install --break-system-packages blobxfer && \
\ \
package remove .db-backup-build-deps && \ package remove .db-backup-build-deps && \
package cleanup && \ package cleanup && \