We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30197c5 commit 013410bCopy full SHA for 013410b
dockerfile
@@ -2,8 +2,9 @@ FROM rust:latest as builder
2
WORKDIR /app
3
COPY . .
4
ENV SHELL=bash
5
+# Install PNPM, source it and build the JS assets
6
RUN curl -fsSL https://get.pnpm.io/install.sh | sh -
-RUN source /root/.bashrc
7
+RUN . /root/.bashrc
8
RUN cd browser && pnpm install && pnpm run build
9
RUN cd ..
10
# git-fetch-with-cli is a CI bugfix, we should be able to remove it later
0 commit comments