aurcache/Dockerfile

35 lines
790 B
Docker
Raw Normal View History

2023-12-23 18:27:36 +00:00
# Stage 1: Build the Rust binary
FROM rust AS builder
# Install necessary tools and dependencies
WORKDIR /app
# Copy the Rust project files
COPY ./src /app/src
COPY ./scripts /app/scripts
COPY Cargo.lock /app
COPY Cargo.toml /app
# Build the Rust binary
RUN cargo build --release
# Stage 2: Create the final image
FROM archlinux
# Copy the built binary from the previous stage
COPY --from=builder /app/target/release/untitled /usr/local/bin/untitled
RUN pacman -Syyu --noconfirm
RUN pacman -S --noconfirm base-devel git
RUN pacman -Sc
# Set any additional configurations or dependencies if required
# Example: Expose a port if your application listens on a specific port
# EXPOSE 8080
# Set the entry point or default command to run your application
WORKDIR /app
2023-12-23 18:27:36 +00:00
CMD ["untitled"]