Update Dockerfile

add git
This commit is contained in:
LucifersCircle 2024-11-29 01:15:03 -08:00
parent 90a7b1185a
commit 3961d78a02

View file

@ -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"]