organic/docker/organic_development/Dockerfile
Tom Alexander 9f111fe445
Some checks failed
clippy Build clippy has failed
build-organic Build build-organic has failed
format Build format has failed
Rework the makefiles.
2024-04-10 20:48:11 -04:00

18 lines
399 B
Docker

FROM rustlang/rust:nightly-alpine3.19 AS builder
RUN apk add --no-cache musl-dev
RUN cargo install --locked --no-default-features --features ci-autoclean cargo-cache
RUN rustup component add rustc-codegen-cranelift
FROM builder AS format
RUN rustup component add rustfmt
FROM builder AS clippy
RUN rustup component add clippy
FROM builder AS wasm
RUN rustup target add wasm32-unknown-unknown