remove replace bind addr with 0.0.0.0

the default addr was switched to 0.0.0.0 in the main branch now anyways
This commit is contained in:
mat 2024-02-02 21:49:09 -06:00
parent 2bbbc2909e
commit 5c46679dd6

View File

@ -4,16 +4,12 @@ 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