7 lines
256 B
Docker
7 lines
256 B
Docker
FROM ghcr.io/steamdeckhomebrew/holo-toolchain-rust:latest
|
|
|
|
#RUN pacman -S --noconfirm cmake make clang git
|
|
# for building Rust wasm frontend
|
|
RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
|
|
|
ENTRYPOINT [ "/backend/entrypoint.sh" ]
|