Skip to content

Commit 91c7aba

Browse files
chore: [SVLS-5677] handy to have rust in our test container when building dd-trace-py from source
1 parent 7a646b0 commit 91c7aba

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ FROM python:$python_version
33

44
ENV PYTHONDONTWRITEBYTECODE True
55

6+
# Add Rust compiler which is needed to build dd-trace-py from source
7+
RUN curl https://sh.rustup.rs -sSf | \
8+
sh -s -- --default-toolchain stable -y
9+
ENV PATH=/root/.cargo/bin:$PATH
10+
611
RUN mkdir -p /test/datadog_lambda
712
WORKDIR /test
813

0 commit comments

Comments
 (0)