Compare commits

...

3 Commits

Author SHA1 Message Date
charlesgauthereau 11cba862ab chore(release): 1.0.4-rc.5 2026-01-28 21:03:56 +01:00
charlesgauthereau 7b40ce6d83 chore(release): 1.0.4-rc.4 2026-01-28 20:49:05 +01:00
charlesgauthereau e6b0653e48 chore(release): 1.0.4-rc.3 2026-01-28 20:42:54 +01:00
4 changed files with 14 additions and 3 deletions
+1 -1
View File
@@ -22,5 +22,5 @@ keywords:
- self-hosted
- portabase
license: Apache-2.0
version: 1.0.4-rc.2
version: 1.0.4-rc.5
date-released: "2026-01-28"
Generated
+1 -1
View File
@@ -1595,7 +1595,7 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
[[package]]
name = "portabase-agent"
version = "1.0.4-rc.1"
version = "1.0.4-rc.4"
dependencies = [
"anyhow",
"async-trait",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "portabase-agent"
version = "1.0.4-rc.2"
version = "1.0.4-rc.5"
edition = "2024"
[dependencies]
+11
View File
@@ -191,8 +191,19 @@ ARG TARGETARCH
RUN rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
RUN if [ "$TARGETARCH" = "arm64" ]; then \
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
gcc-aarch64-linux-gnu \
libc6-dev-arm64-cross \
&& rm -rf /var/lib/apt/lists/*; \
fi
ENV CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc
ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc
COPY . .
RUN if [ "$TARGETARCH" = "amd64" ]; then \
cargo build --release --target x86_64-unknown-linux-gnu && \
mv /app/target/x86_64-unknown-linux-gnu/release /app/target/release-app; \