Skip to content

Commit 11cba86

Browse files
author
charlesgauthereau
committed
chore(release): 1.0.4-rc.5
1 parent 7b40ce6 commit 11cba86

4 files changed

Lines changed: 7 additions & 8 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.4
25+
version: 1.0.4-rc.5
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.4"
3+
version = "1.0.4-rc.5"
44
edition = "2024"
55

66
[dependencies]

docker/Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -191,20 +191,19 @@ ARG TARGETARCH
191191

192192
RUN rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
193193

194-
COPY . .
195-
196-
197194
RUN if [ "$TARGETARCH" = "arm64" ]; then \
198-
apt-get update && apt-get install -y \
195+
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
199196
gcc-aarch64-linux-gnu \
200197
libc6-dev-arm64-cross \
201-
libssl-dev:arm64 \
202198
&& rm -rf /var/lib/apt/lists/*; \
203199
fi
204200

205201
ENV CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc
206202
ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc
207203

204+
COPY . .
205+
206+
208207
RUN if [ "$TARGETARCH" = "amd64" ]; then \
209208
cargo build --release --target x86_64-unknown-linux-gnu && \
210209
mv /app/target/x86_64-unknown-linux-gnu/release /app/target/release-app; \

0 commit comments

Comments
 (0)