updated container definitions for new config files

This commit is contained in:
Chad Baxter 2024-05-24 01:43:39 +00:00 committed by GitHub
parent 85f438ef65
commit 96258f8ac0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 13 additions and 11 deletions

View File

@ -2,20 +2,20 @@ FROM lukemathwalker/cargo-chef:latest-rust-slim as chef
WORKDIR /app WORKDIR /app
FROM chef AS planner FROM chef AS planner
COPY ./Cargo.toml ./Cargo.lock ./ COPY . .
COPY ./src ./src RUN cargo chef prepare --recipe-path recipe.json
RUN cargo chef prepare
FROM chef AS builder FROM chef AS builder
COPY --from=planner /app/recipe.json . COPY --from=planner /app/recipe.json recipe.json
RUN cargo chef cook --release RUN cargo chef cook --release --recipe-path recipe.json
COPY . . COPY . .
RUN cargo build --release RUN cargo build --release
RUN mv ./target/release/metasearch2 ./app
FROM scratch AS runtime FROM debian:bookworm-slim AS runtime
WORKDIR /app WORKDIR /app
COPY --from=builder /app/app /usr/local/bin/ COPY --from=builder /app/config.toml /usr/local/bin/config.toml
COPY ./config.toml /usr/local/bin/ COPY --from=builder /app/target/release/metasearch2 /usr/local/bin/metasearch2
ARG CONFIG
ENV CONFIG=${CONFIG}
EXPOSE 28019 EXPOSE 28019
ENTRYPOINT ["/usr/local/bin/app"] ENTRYPOINT /usr/local/bin/metasearch2 $CONFIG

View File

@ -3,6 +3,8 @@ version: '3.7'
services: services:
metasearch2: metasearch2:
build: build:
args:
CONFIG: "/usr/local/bin/config.toml"
context: . context: .
dockerfile: Containerfile dockerfile: Containerfile
network_mode: "host" network_mode: "host"