From 2f7f07682e3db6b24ca98aced516840bbd27cd17 Mon Sep 17 00:00:00 2001 From: LucifersCircle Date: Fri, 29 Nov 2024 03:36:53 -0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index a1f07c5..85a5fdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ # Build stage FROM rust:latest AS builder -# Install dependencies -RUN apt-get update && apt-get install -y git +# Install musl target for static linking +RUN rustup target add x86_64-unknown-linux-musl # Set the working directory WORKDIR /build @@ -10,22 +10,19 @@ WORKDIR /build # Clone the repository RUN git clone https://github.com/LucifersCircle/redlib.git . -# Build the project using Cargo -RUN cargo build --release +# Build the project with musl target +RUN cargo build --release --target=x86_64-unknown-linux-musl -# Final stage +# Final stage with minimal base image FROM alpine:latest -# Install required runtime libraries -RUN apk add --no-cache libc6-compat - -# Copy the compiled binary from the builder stage -COPY --from=builder /build/target/release/redlib /usr/local/bin/redlib +# Copy the statically linked binary from the builder stage +COPY --from=builder /build/target/x86_64-unknown-linux-musl/release/redlib /usr/local/bin/redlib # Set the working directory WORKDIR /app -# Expose the application port (update if needed) +# Expose the application port EXPOSE 8080 # Run the binary