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 d012a83 commit 388eac9Copy full SHA for 388eac9
Dockerfile
@@ -1,13 +1,14 @@
1
FROM python:3.13.3-slim-bullseye
2
3
-RUN apt-get update && apt-get install -y ffmpeg curl
+RUN apt-get update && apt-get install -y build-essential ffmpeg curl
4
5
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
6
ENV PATH="/root/.cargo/bin:${PATH}"
7
8
WORKDIR /app
9
10
COPY requirements.txt ./
11
+RUN pip install --upgrade pip
12
RUN pip install --no-cache-dir -r requirements.txt
13
14
COPY . .
0 commit comments