FROM rust:1.82-alpine3.20
RUN apk update && \
apk upgrade && \
apk add git bash
COPY entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ]