11 lines
207 B
Docker
11 lines
207 B
Docker
|
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
|