Update Dockerfile

rust versioning
This commit is contained in:
LucifersCircle 2024-11-29 00:26:45 -08:00
parent e91eb72be3
commit 2b3a81a18a

View file

@ -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}