We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5447d89 commit 4d07a0eCopy full SHA for 4d07a0e
Dockerfile
@@ -7,6 +7,11 @@ ARG runtime
7
RUN mkdir -p /build/python/lib/$runtime/site-packages
8
WORKDIR /build
9
10
+# Add Rust compiler which is needed to build dd-trace-py from source
11
+RUN curl https://sh.rustup.rs -sSf | \
12
+ sh -s -- --default-toolchain stable -y
13
+ENV PATH=/root/.cargo/bin:$PATH
14
+
15
# Install datadog_lambda and dependencies from local
16
COPY . .
17
RUN pip install . -t ./python/lib/$runtime/site-packages
0 commit comments