Skip to content

Commit fb09fcc

Browse files
committed
fix: add cargo to path
1 parent dcfce88 commit fb09fcc

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
@@ -7,5 +7,6 @@ ENV DEBIAN_FRONTEND=noninteractive
77

88
COPY src/* /tmp/
99
RUN apt-get update && bash /tmp/install-general.sh && rm /tmp/install-general.sh
10-
RUN for script in /tmp/*.sh; do source "$script"; done
10+
RUN for script in /tmp/*.sh; do bash "$script"; done
11+
RUN export PATH=/usr/vscode/.cargo/bin:$PATH
1112
RUN rm -rf /tmp/*.sh

0 commit comments

Comments
 (0)