Skip to content

Commit 013410b

Browse files
committed
source fix
1 parent 30197c5 commit 013410b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ FROM rust:latest as builder
22
WORKDIR /app
33
COPY . .
44
ENV SHELL=bash
5+
# Install PNPM, source it and build the JS assets
56
RUN curl -fsSL https://get.pnpm.io/install.sh | sh -
6-
RUN source /root/.bashrc
7+
RUN . /root/.bashrc
78
RUN cd browser && pnpm install && pnpm run build
89
RUN cd ..
910
# git-fetch-with-cli is a CI bugfix, we should be able to remove it later

0 commit comments

Comments
 (0)