mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 21:17:37 +03:00
Update Dockerfile
This commit is contained in:
parent
bd78c39520
commit
11ab200e45
1 changed files with 20 additions and 18 deletions
38
Dockerfile
38
Dockerfile
|
@ -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"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue