Timo Ley
96d9ed38cf
All checks were successful
ci/woodpecker/tag/central-override Pipeline was successful
13 lines
No EOL
230 B
Docker
13 lines
No EOL
230 B
Docker
FROM archlinux:base-devel
|
|
|
|
RUN pacman -Syu --noconfirm
|
|
|
|
RUN pacman -S --noconfirm rustup dart haxe zola nodejs npm
|
|
|
|
RUN rustup default stable
|
|
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
RUN cargo install mdbook
|
|
|
|
ENTRYPOINT ["/bin/bash"] |