Skip to content

Commit 388eac9

Browse files
committed
fix: add build-essential to Dockerfile for native dependency compilation
1 parent d012a83 commit 388eac9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
FROM python:3.13.3-slim-bullseye
22

3-
RUN apt-get update && apt-get install -y ffmpeg curl
3+
RUN apt-get update && apt-get install -y build-essential ffmpeg curl
44

55
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
66
ENV PATH="/root/.cargo/bin:${PATH}"
77

88
WORKDIR /app
99

1010
COPY requirements.txt ./
11+
RUN pip install --upgrade pip
1112
RUN pip install --no-cache-dir -r requirements.txt
1213

1314
COPY . .

0 commit comments

Comments
 (0)