FROM ubuntu:24.04 RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates libssl3 openssh-client procps git \ && rm -rf /var/lib/apt/lists/* RUN git config --system --add safe.directory '*' WORKDIR /app COPY ./target/release/app /bin EXPOSE 3000 CMD ["app"]