From b196ec69271d2dd5bcb8ccfc4164aff903899260 Mon Sep 17 00:00:00 2001 From: LucifersCircle Date: Fri, 29 Nov 2024 03:38:27 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 85a5fdd..d87e606 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # Build stage FROM rust:latest AS builder -# Install musl target for static linking -RUN rustup target add x86_64-unknown-linux-musl +# Install musl-tools for static linking +RUN apt-get update && apt-get install -y musl-tools && rustup target add x86_64-unknown-linux-musl # Set the working directory WORKDIR /build @@ -22,7 +22,7 @@ COPY --from=builder /build/target/x86_64-unknown-linux-musl/release/redlib /usr/ # Set the working directory WORKDIR /app -# Expose the application port +# Expose the application port (update if needed) EXPOSE 8080 # Run the binary