2023-12-22 18:56:21 -05:00
|
|
|
FROM rustlang/rust:nightly-alpine3.17 AS builder
|
|
|
|
|
|
|
|
RUN apk add --no-cache musl-dev
|
|
|
|
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache
|
2023-12-22 20:12:59 -05:00
|
|
|
RUN rustup component add rustfmt
|
2023-12-22 20:43:39 -05:00
|
|
|
|
|
|
|
FROM builder AS javascript
|
|
|
|
|
|
|
|
RUN apk add --no-cache npm
|
|
|
|
RUN npm install --global prettier@3.1.0
|