FROM alpine:edge
RUN apk update && apk upgrade
RUN apk add rustup
RUN rustup-init -y
ENV PATH="/root/.cargo/bin:${PATH}"
CMD [ "ash" ]