File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,5 +22,5 @@ keywords:
2222 - self-hosted
2323 - portabase
2424license : Apache-2.0
25- version : 1.0.4-rc.4
25+ version : 1.0.4-rc.5
2626date-released : " 2026-01-28"
Original file line number Diff line number Diff line change 11[package ]
22name = " portabase-agent"
3- version = " 1.0.4-rc.4 "
3+ version = " 1.0.4-rc.5 "
44edition = " 2024"
55
66[dependencies ]
Original file line number Diff line number Diff line change @@ -191,20 +191,19 @@ ARG TARGETARCH
191191
192192RUN rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
193193
194- COPY . .
195-
196-
197194RUN 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
205201ENV CC_aarch64_unknown_linux_gnu=aarch64-linux-gnu-gcc
206202ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc
207203
204+ COPY . .
205+
206+
208207RUN 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; \
You can’t perform that action at this time.
0 commit comments