FROM rust:latest as planner RUN cargo install cargo-chef WORKDIR /src COPY . /src/ RUN cargo chef prepare --recipe-path recipe.json FROM rust:latest as cacher WORKDIR /src/ RUN cargo install cargo-chef COPY --from=planner /src/recipe.json recipe.json RUN cargo chef cook --release --recipe-path recipe.json FROM rust:latest as rust WORKDIR /src COPY . . COPY --from=cacher /src/target target #COPY --from=frontend /src/static/cache/bundle/ /src/static/cache/bundle/ RUN cargo --version #RUN make cache-bust RUN cargo build --release FROM debian:bullseye as rwhool LABEL org.opencontainers.image.source https://github.com/realaravinth/rwhool RUN useradd -ms /bin/bash -u 1001 rwhool WORKDIR /home/rwhool COPY --from=rust /src/target/release/rwhool /usr/local/bin/ #COPY --from=rust /src/config/default.toml /etc/rwhool/config.toml RUN mkdir /var/lib/rwhool && chown rwhool:rwhool /var/lib/rwhool USER rwhool CMD [ "/usr/local/bin/rwhool" ]