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 982f6e7 commit 9d7b858Copy full SHA for 9d7b858
Dockerfile
@@ -8,6 +8,10 @@ WORKDIR ${LAMBDA_TASK_ROOT}
8
RUN pip install --upgrade pip && yum install -y git
9
10
# Install dependencies into the virtual environment
11
+# Install build tools (gcc, make, etc.) and python3-devel for native builds
12
+RUN yum install -y gcc make
13
+RUN yum install -y python3-devel
14
+
15
COPY requirements.txt .
16
RUN pip install -r requirements.txt
17
0 commit comments