Update Dockerfile

This commit is contained in:
LucifersCircle 2024-11-29 03:31:44 -08:00
parent bd78c39520
commit 11ab200e45

View file

@ -1,30 +1,32 @@
# Use the official Rust image from Docker Hub as a base # Build stage
FROM rust:latest FROM rust:latest AS builder
# Install necessary build tools and dependencies # Install dependencies
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y git
git \
curl \
build-essential \
&& rm -rf /var/lib/apt/lists/*
# Update Rust to the latest stable version # Set the working directory
RUN rustup update stable
# Set the working directory for the build
WORKDIR /build WORKDIR /build
# Clone the redlib repository from GitHub # 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 using Cargo
RUN cargo build --release RUN cargo build --release
# Expose the required port # Final stage
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
# Set the working directory
WORKDIR /app
# Expose the application port (update if needed)
EXPOSE 8080 EXPOSE 8080
# Set the user to 'redlib' as specified in the original repo # Run the binary
USER redlib
# Command to run when the container starts (start the binary)
CMD ["redlib"] CMD ["redlib"]