webdev-docker/Dockerfile
Timo Ley 96d9ed38cf
All checks were successful
ci/woodpecker/tag/central-override Pipeline was successful
init
2024-05-10 21:57:44 +02:00

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"]