Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
KagChi authored Jun 27, 2024
1 parent 8280590 commit 2352300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ COPY .cargo ./.cargo/
RUN mkdir src/ && echo 'fn main() {}' > ./src/main.rs

# Step 6: Build the project
RUN cargo build --release;
RUN cargo build --target=aarch64-unknown-linux-gnu --release;

# Step 7: Clean up and prepare for the final build
RUN rm -f target/release/deps/gateway_proxy*
COPY ./src ./src

# Step 8: Final build
RUN cargo build --release; \
RUN cargo build --target=aarch64-unknown-linux-gnu --release; \
fi && \
cp target/release/gateway-proxy /gateway-proxy && \
strip /gateway-proxy
Expand Down

0 comments on commit 2352300

Please sign in to comment.