File tree Expand file tree Collapse file tree 4 files changed +6
-12
lines changed
Expand file tree Collapse file tree 4 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 4848 uses : actions-rs/toolchain@v1
4949 with :
5050 toolchain : stable
51- target : aarch64-unknown-linux-musl
51+ target : aarch64-unknown-linux-gnu
5252 override : true
5353
54- - name : Install musl-tools
55- run : sudo apt-get update && sudo apt-get install -y musl-tools
56-
5754 - name : Install cargo-binstall
5855 uses : cargo-bins/cargo-binstall@main
5956
Original file line number Diff line number Diff line change 4848 uses : actions-rs/toolchain@v1
4949 with :
5050 toolchain : stable
51- target : x86_64-unknown-linux-musl
51+ target : x86_64-unknown-linux-gnu
5252 override : true
5353
54- - name : Install musl-tools
55- run : sudo apt-get update && sudo apt-get install -y musl-tools
56-
5754 - name : Install cargo-binstall
5855 uses : cargo-bins/cargo-binstall@main
5956
Original file line number Diff line number Diff line change 11# Stage 1: Builder with Rust environment
2- FROM --platform=linux/aarch64 alpine :latest AS builder
2+ FROM --platform=linux/aarch64 ubuntu :latest AS builder
33
44# Prepare the working directory
55WORKDIR /app
@@ -11,7 +11,7 @@ COPY target/dx/web/release/web/web /app/pslink
1111RUN cd /app && ./pslink demo
1212
1313# Stage 2: Minimal image for execution
14- FROM --platform=linux/aarch64 scratch
14+ FROM --platform=linux/aarch64 ubuntu:latest
1515
1616# Copy files from builder
1717COPY --from=builder /app/ /app/
Original file line number Diff line number Diff line change 11# Stage 1: Builder with Rust environment
2- FROM --platform=linux/x86_64 alpine AS builder
2+ FROM --platform=linux/x86_64 ubuntu:latest AS builder
33
44# Prepare the working directory
55WORKDIR /app
@@ -11,7 +11,7 @@ COPY target/dx/web/release/web/web /app/pslink
1111RUN cd /app && ./pslink demo
1212
1313# Stage 2: Minimal image for execution
14- FROM --platform=linux/x86_64 scratch
14+ FROM --platform=linux/x86_64 ubuntu:latest
1515
1616# Copy files from builder
1717COPY --from=builder /app/ /app/
You can’t perform that action at this time.
0 commit comments