From 3961d78a028d548d682180019f53d4a70193a03a Mon Sep 17 00:00:00 2001 From: LucifersCircle Date: Fri, 29 Nov 2024 01:15:03 -0800 Subject: [PATCH] Update Dockerfile add git --- Dockerfile | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/Dockerfile b/Dockerfile index 51a3658..16c04a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,9 @@ FROM rust:1.71.0-alpine -# Set the target architecture as an ARG (default to x86_64) -ARG TARGET=x86_64-unknown-linux-musl +# Install git and other necessary dependencies +RUN apt-get update && apt-get install -y git -# Install dependencies (curl, make, cmake, etc.) -RUN apk add --no-cache curl cmake make - -# Create the working directory for the build process +# Set the working directory to /build WORKDIR /build # Clone the redlib repository @@ -15,21 +12,15 @@ RUN git clone https://github.com/LucifersCircle/redlib.git /build # Checkout the main branch RUN cd /build && git checkout main -# Build the redlib binary using cargo -RUN cd /build && cargo build --release --target ${TARGET} +# Add the necessary build steps (e.g., cargo build) +# Example: RUN cargo build --release -# Copy the binary to the appropriate location -RUN cp /build/target/${TARGET}/release/redlib /usr/local/bin/redlib - -# Set up a non-privileged user to run the binary +# Set the final image's default user RUN adduser --home /nonexistent --no-create-home --disabled-password redlib USER redlib -# Expose port 8080 +# Expose the necessary port EXPOSE 8080 -# Run a healthcheck every minute to make sure redlib is functional -HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider -q http://localhost:8080/settings || exit 1 - -# Command to run the binary +# Set the default command to run the application CMD ["redlib"]