mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-05 14:07:39 +03:00
Update Dockerfile
This commit is contained in:
parent
11ab200e45
commit
2f7f07682e
1 changed files with 8 additions and 11 deletions
19
Dockerfile
19
Dockerfile
|
@ -1,8 +1,8 @@
|
||||||
# Build stage
|
# Build stage
|
||||||
FROM rust:latest AS builder
|
FROM rust:latest AS builder
|
||||||
|
|
||||||
# Install dependencies
|
# Install musl target for static linking
|
||||||
RUN apt-get update && apt-get install -y git
|
RUN rustup target add x86_64-unknown-linux-musl
|
||||||
|
|
||||||
# Set the working directory
|
# Set the working directory
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
|
@ -10,22 +10,19 @@ WORKDIR /build
|
||||||
# Clone the repository
|
# 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 with musl target
|
||||||
RUN cargo build --release
|
RUN cargo build --release --target=x86_64-unknown-linux-musl
|
||||||
|
|
||||||
# Final stage
|
# Final stage with minimal base image
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
# Install required runtime libraries
|
# Copy the statically linked binary from the builder stage
|
||||||
RUN apk add --no-cache libc6-compat
|
COPY --from=builder /build/target/x86_64-unknown-linux-musl/release/redlib /usr/local/bin/redlib
|
||||||
|
|
||||||
# Copy the compiled binary from the builder stage
|
|
||||||
COPY --from=builder /build/target/release/redlib /usr/local/bin/redlib
|
|
||||||
|
|
||||||
# Set the working directory
|
# Set the working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Expose the application port (update if needed)
|
# Expose the application port
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
||||||
# Run the binary
|
# Run the binary
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue