Skip to content

Commit 9d7b858

Browse files
committed
fix requirements - numpy compiler error
1 parent 982f6e7 commit 9d7b858

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ WORKDIR ${LAMBDA_TASK_ROOT}
88
RUN pip install --upgrade pip && yum install -y git
99

1010
# 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+
1115
COPY requirements.txt .
1216
RUN pip install -r requirements.txt
1317

0 commit comments

Comments
 (0)