dockerfiles/build/rust/Dockerfile

8 lines
124 B
Docker
Raw Normal View History

2021-05-18 01:19:12 +00:00
FROM archlinux:base-devel
2021-05-17 23:46:33 +00:00
2021-05-18 01:19:12 +00:00
RUN pacman -Suyy --noconfirm\
2021-05-18 01:52:55 +00:00
rustup docker
2021-05-18 01:19:12 +00:00
RUN rustup toolchain install stable
2021-05-17 23:46:33 +00:00
CMD [ "bash" ]