setup-rust/Dockerfile

10 lines
144 B
Text
Raw Normal View History

2024-11-29 06:10:57 +01:00
FROM rust:1.82-alpine3.20
2024-05-16 18:52:20 +01:00
2024-11-29 06:10:57 +01:00
RUN apk update && \
apk upgrade && \
apk add git bash
2024-05-16 18:52:20 +01:00
COPY entrypoint.sh /
ENTRYPOINT [ "/entrypoint.sh" ]