mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 05:57:40 +03:00
Update Dockerfile
add git
This commit is contained in:
parent
90a7b1185a
commit
3961d78a02
1 changed files with 8 additions and 17 deletions
25
Dockerfile
25
Dockerfile
|
@ -1,12 +1,9 @@
|
||||||
FROM rust:1.71.0-alpine
|
FROM rust:1.71.0-alpine
|
||||||
|
|
||||||
# Set the target architecture as an ARG (default to x86_64)
|
# Install git and other necessary dependencies
|
||||||
ARG TARGET=x86_64-unknown-linux-musl
|
RUN apt-get update && apt-get install -y git
|
||||||
|
|
||||||
# Install dependencies (curl, make, cmake, etc.)
|
# Set the working directory to /build
|
||||||
RUN apk add --no-cache curl cmake make
|
|
||||||
|
|
||||||
# Create the working directory for the build process
|
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
|
||||||
# Clone the redlib repository
|
# Clone the redlib repository
|
||||||
|
@ -15,21 +12,15 @@ RUN git clone https://github.com/LucifersCircle/redlib.git /build
|
||||||
# Checkout the main branch
|
# Checkout the main branch
|
||||||
RUN cd /build && git checkout main
|
RUN cd /build && git checkout main
|
||||||
|
|
||||||
# Build the redlib binary using cargo
|
# Add the necessary build steps (e.g., cargo build)
|
||||||
RUN cd /build && cargo build --release --target ${TARGET}
|
# Example: RUN cargo build --release
|
||||||
|
|
||||||
# Copy the binary to the appropriate location
|
# Set the final image's default user
|
||||||
RUN cp /build/target/${TARGET}/release/redlib /usr/local/bin/redlib
|
|
||||||
|
|
||||||
# Set up a non-privileged user to run the binary
|
|
||||||
RUN adduser --home /nonexistent --no-create-home --disabled-password redlib
|
RUN adduser --home /nonexistent --no-create-home --disabled-password redlib
|
||||||
USER redlib
|
USER redlib
|
||||||
|
|
||||||
# Expose port 8080
|
# Expose the necessary port
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
# Run a healthcheck every minute to make sure redlib is functional
|
# Set the default command to run the application
|
||||||
HEALTHCHECK --interval=1m --timeout=3s CMD wget --spider -q http://localhost:8080/settings || exit 1
|
|
||||||
|
|
||||||
# Command to run the binary
|
|
||||||
CMD ["redlib"]
|
CMD ["redlib"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue