lib_um_crypto_rust/Dockerfile
2024-09-22 19:12:12 +01:00

18 lines
421 B
Docker

FROM rust:1.81-bookworm
RUN curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
ARG uid=1998
ARG gid=1998
RUN groupadd -g "$gid" builder \
&& useradd -u "$uid" -g "$gid" -m -d /h builder
USER builder
RUN curl -fsL https://get.pnpm.io/install.sh | ENV="$HOME/.bashrc" SHELL="$(which bash)" bash -
RUN git config --global --add safe.directory /a
ENV PATH="/h/.local/share/pnpm:$PATH"
WORKDIR /a