Skip to content

Commit 6985260

Browse files
author
charlesgauthereau
committed
chore(release): 1.0.4-rc.8
1 parent 313693f commit 6985260

4 files changed

Lines changed: 33 additions & 3 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ keywords:
2222
- self-hosted
2323
- portabase
2424
license: Apache-2.0
25-
version: 1.0.4-rc.7
25+
version: 1.0.4-rc.8
2626
date-released: "2026-01-28"

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "portabase-agent"
3-
version = "1.0.4-rc.7"
3+
version = "1.0.4-rc.8"
44
edition = "2024"
55

66
[dependencies]

docker/Dockerfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,36 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
271271
&& apt-get clean \
272272
&& rm -rf /var/lib/apt/lists/*
273273

274+
275+
# =========================
276+
# PostgreSQL client binaries (versions 12-18)
277+
# =========================
278+
RUN for v in 12 13 14 15 16 17 18; do mkdir -p /usr/lib/postgresql/$v/bin; done
279+
280+
COPY assets/tools/amd64/postgresql/ /tmp/pg-x64/
281+
COPY assets/tools/arm64/postgresql/ /tmp/pg-arm/
282+
283+
RUN if [ "$TARGETARCH" = "amd64" ]; then \
284+
for v in 12 13 14 15 16 17 18; do \
285+
cp -r /tmp/pg-x64/postgresql-$v/bin/* /usr/lib/postgresql/$v/bin/; \
286+
done; \
287+
else \
288+
for v in 12 13 14 15 16 17 18; do \
289+
cp -r /tmp/pg-arm/postgresql-$v/bin/* /usr/lib/postgresql/$v/bin/; \
290+
done; \
291+
fi && \
292+
rm -rf /tmp/pg-x64 /tmp/pg-arm && \
293+
chmod +x /usr/lib/postgresql/*/bin/*
294+
295+
# =========================
296+
# MongoDB client binaries
297+
# =========================
298+
COPY assets/tools/${TARGETARCH}/mongodb/ /usr/local/mongodb/
299+
RUN chmod +x /usr/local/mongodb/bin/*
300+
301+
302+
303+
274304
WORKDIR /app
275305

276306
# =========================

0 commit comments

Comments
 (0)