Dockerized-Rust/docker/build/build.sh
2025-02-10 10:22:21 -05:00

8 lines
No EOL
184 B
Bash

# Copying source code to working directory
cp -r /src/* .
# Building the app
/root/.cargo/bin/cargo build
# Copying app to Result Directory
cp target/debug/$PROJ_NAME /app/$PROJ_NAME