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