quoter/Dockerfile
2024-11-13 09:10:53 +03:00

53 lines
1.3 KiB
Docker

# Use a specific Rust version that is compatible with your dependencies
FROM rust:slim-buster AS build
# Print system information for debugging
RUN uname -a
RUN cat /etc/os-release
# Install necessary packages
RUN apt-get update -y && \
apt-get install -y git pkg-config make g++ libssl-dev wget \
libheif-dev libtiff-dev && \
rustup target add x86_64-unknown-linux-gnu && \
rustup select nightly
# Create a new Rust binary project
RUN USER=root cargo new --bin quoter
WORKDIR /quoter
# Copy Cargo files to cache dependencies
COPY ./Cargo.lock ./Cargo.lock
COPY ./Cargo.toml ./Cargo.toml
# Cache dependencies
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
RUN cargo build --release
# Remove the default source file created by cargo new
RUN rm src/*.rs
# Copy your source code into the container
COPY ./src ./src
# Build the application for release
RUN cargo build --release
# Use a minimal runtime image for the final stage
FROM debian:slim
ENV RUST_BACKTRACE=full
ENV RUST_LOG=warn
# Install runtime dependencies
RUN apt-get update && apt-get install -y openssl libssl-dev \
libheif1 libtiff5 && \
apt-get clean && rm -rf /var/lib/apt/lists/*
# Copy the compiled binary from the build stage
COPY --from=build /quoter/target/release/quoter .
ENV PORT=8080
EXPOSE 8080
CMD ["./quoter"]