mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +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
|
||||
FROM rust:latest AS builder
|
||||
|
||||
# Install dependencies
|
||||
RUN apt-get update && apt-get install -y git
|
||||
# Install musl target for static linking
|
||||
RUN rustup target add x86_64-unknown-linux-musl
|
||||
|
||||
# Set the working directory
|
||||
WORKDIR /build
|
||||
|
@ -10,22 +10,19 @@ WORKDIR /build
|
|||
# Clone the repository
|
||||
RUN git clone https://github.com/LucifersCircle/redlib.git .
|
||||
|
||||
# Build the project using Cargo
|
||||
RUN cargo build --release
|
||||
# Build the project with musl target
|
||||
RUN cargo build --release --target=x86_64-unknown-linux-musl
|
||||
|
||||
# Final stage
|
||||
# Final stage with minimal base image
|
||||
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
|
||||
# Copy the statically linked binary from the builder stage
|
||||
COPY --from=builder /build/target/x86_64-unknown-linux-musl/release/redlib /usr/local/bin/redlib
|
||||
|
||||
# Set the working directory
|
||||
WORKDIR /app
|
||||
|
||||
# Expose the application port (update if needed)
|
||||
# Expose the application port
|
||||
EXPOSE 8080
|
||||
|
||||
# Run the binary
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue