containers/rust/Dockerfile

11 lines
207 B
Docker
Raw Normal View History

2022-11-24 23:39:35 -06:00
FROM alpine:latest
LABEL org.opencontainers.image.authors="kaan@bgenc.net"
RUN apk add --no-cache rustup \
&& rustup-init -y
ENV PATH=/root/.cargo/bin:$PATH
RUN rustup component add llvm-tools-preview