mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-27 13:47:38 +02:00
9 lines
186 B
Docker
9 lines
186 B
Docker
FROM alpine:3.23
|
|
RUN apk add --no-cache curl build-base sdl3-dev
|
|
|
|
RUN curl https://sh.rustup.rs -sSf \
|
|
| sh -s -- --default-toolchain stable -y
|
|
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|