We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 911f06c commit e0bf542Copy full SHA for e0bf542
deployments/images/base/Dockerfile
@@ -8,11 +8,13 @@ FROM ubuntu:24.04 AS base
8
9
COPY scripts/install_build_tools.sh .
10
COPY scripts/dependencies.sh .
11
+COPY scripts/requirements.txt .
12
COPY rust-toolchain.toml .
13
14
RUN apt update && apt -y install \
15
bzip2 \
16
curl \
17
+ python3.9 \
18
tini \
19
unzip
20
@@ -23,6 +25,7 @@ ENV PATH=$PATH:${RUSTUP_HOME}/bin
23
25
RUN ./install_build_tools.sh
24
26
RUN rustup toolchain install
27
RUN cargo install cargo-chef
28
+RUN pip install -r ./requirements.txt
29
30
# Cleanup.
-RUN rm -f install_build_tools.sh dependencies.sh
31
+RUN rm -f install_build_tools.sh dependencies.sh requirements.txt
0 commit comments