silly containers

This commit is contained in:
Chad Baxter 2024-01-22 00:31:08 -05:00
parent bf4db99465
commit 9a2bf497a4
No known key found for this signature in database
GPG Key ID: FE5FA57E02944FB5
2 changed files with 35 additions and 0 deletions

24
Containerfile Normal file
View File

@ -0,0 +1,24 @@
FROM lukemathwalker/cargo-chef:latest-rust-alpine as chef
WORKDIR /app
FROM chef AS planner
COPY ./Cargo.toml ./Cargo.lock ./
COPY ./src ./src
RUN apk add sed
RUN sed -i 's/\[::\]/0.0.0.0/g' /app/src/web/mod.rs
RUN cargo chef prepare
FROM chef AS builder
COPY --from=planner /app/recipe.json .
RUN cargo chef cook --release
COPY . .
RUN apk add sed
RUN sed -i 's/\[::\]/0.0.0.0/g' /app/src/web/mod.rs
RUN cargo build --release
RUN mv ./target/release/metasearch2 ./app
FROM scratch AS runtime
WORKDIR /app
COPY --from=builder /app/app /usr/local/bin/
EXPOSE 28019
ENTRYPOINT ["/usr/local/bin/app"]

11
container-compose.yml Normal file
View File

@ -0,0 +1,11 @@
version: '3.7'
services:
honeyup:
container_name: metasearch2
build:
context: .
dockerfile: Containerfile
ports:
- '28019:28019'
restart: unless-stopped