yuno/Dockerfile
silvana 38cb6b1563
Some checks failed
ci/woodpecker/pr/quality Pipeline failed
Add(assets): tiled maps support.
2024-08-04 14:18:45 +02:00

13 lines
422 B
Docker

FROM alpine:edge
RUN apk add curl build-base mold clang gcc libc-dev pkgconf libx11-dev alsa-lib-dev eudev-dev sccache
WORKDIR /app
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs --output init-rust.sh \
&& chmod a+x init-rust.sh \
&& ./init-rust.sh -y \
&& /root/.cargo/bin/rustup target add wasm32-unknown-unknown \
&& /root/.cargo/bin/cargo install trunk
ENV PATH="/root/.cargo/bin:$PATH"