Update Dockerfile
Browse files- 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
|
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 |
|