Update Dockerfile

This commit is contained in:
LucifersCircle 2024-11-29 03:36:53 -08:00
parent 11ab200e45
commit 2f7f07682e

View file

@ -1,8 +1,8 @@
# Build stage # Build stage
FROM rust:latest AS builder FROM rust:latest AS builder
# Install dependencies # Install musl target for static linking
RUN apt-get update && apt-get install -y git RUN rustup target add x86_64-unknown-linux-musl
# Set the working directory # Set the working directory
WORKDIR /build WORKDIR /build
@ -10,22 +10,19 @@ WORKDIR /build
# Clone the repository # Clone the repository
RUN git clone https://github.com/LucifersCircle/redlib.git . RUN git clone https://github.com/LucifersCircle/redlib.git .
# Build the project using Cargo # Build the project with musl target
RUN cargo build --release RUN cargo build --release --target=x86_64-unknown-linux-musl
# Final stage # Final stage with minimal base image
FROM alpine:latest FROM alpine:latest
# Install required runtime libraries # Copy the statically linked binary from the builder stage
RUN apk add --no-cache libc6-compat COPY --from=builder /build/target/x86_64-unknown-linux-musl/release/redlib /usr/local/bin/redlib
# Copy the compiled binary from the builder stage
COPY --from=builder /build/target/release/redlib /usr/local/bin/redlib
# Set the working directory # Set the working directory
WORKDIR /app WORKDIR /app
# Expose the application port (update if needed) # Expose the application port
EXPOSE 8080 EXPOSE 8080
# Run the binary # Run the binary