FJDorfner commited on
Commit
3ea974d
·
verified ·
1 Parent(s): 4ca827d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -7,11 +7,10 @@ WORKDIR /app
7
  # Install system dependencies including curl
8
  RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
9
 
10
- # Install Rust and Cargo
11
  RUN apt-get update && \
12
- apt-get install -y curl && \
13
  curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
14
- export PATH="$HOME/.cargo/bin:$PATH" && \
15
  apt-get clean && \
16
  rm -rf /var/lib/apt/lists/*
17
 
 
7
  # Install system dependencies including curl
8
  RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
9
 
10
+ # Install necessary tools
11
  RUN apt-get update && \
12
+ apt-get install -y curl build-essential && \
13
  curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \
 
14
  apt-get clean && \
15
  rm -rf /var/lib/apt/lists/*
16