Skip to content

Commit 1b40a31

Browse files
committed
Add Rust toolchain installation to dashboard Dockerfile
Install Rust nightly toolchain in the dashboard Docker image to support potential Rust-based dependencies or build processes
1 parent 943d831 commit 1b40a31

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

docker/Dockerfile.anomstack_dashboard

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ FROM python:3.11-slim
22

33
RUN apt-get update && apt-get install -y git
44

5+
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -y
6+
57
WORKDIR /opt/dagster/app
68

79
RUN apt-get update && apt-get install -y \

0 commit comments

Comments
 (0)