inital and rust build image

This commit is contained in:
Sivert V. Sæther 2021-05-18 01:46:33 +02:00
parent 77b62744ca
commit c5057dd582
3 changed files with 11 additions and 1 deletions

3
build/README.md Normal file
View File

@ -0,0 +1,3 @@
# Build images
Only rust with archlinux for now.

7
build/rust/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM archlinux:latest
RUN pacman -Suyy\
rustup
RUN rustup toolchain install stabile
CMD [ "bash" ]