mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 13:37:40 +03:00
Update Dockerfile
rust versioning
This commit is contained in:
parent
e91eb72be3
commit
2b3a81a18a
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
FROM rust:1.71.0-alpine3.19
|
||||
# Use the official Rust image with Alpine base
|
||||
FROM rust:alpine
|
||||
|
||||
# Set the target architecture as an ARG
|
||||
ARG TARGET
|
||||
|
@ -15,6 +16,10 @@ WORKDIR /redlib
|
|||
# Checkout the main branch (if needed)
|
||||
RUN git checkout main
|
||||
|
||||
# Install the desired version of Rust (if a specific version is needed)
|
||||
RUN rustup install stable
|
||||
RUN rustup default stable
|
||||
|
||||
# Build the project using Cargo (this will handle the Rust-specific build)
|
||||
RUN cargo build --release --target ${TARGET}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue