Skip to content

Commit 06cbd18

Browse files
committed
build: Update Dockerfile to install Rust and curl
- Update base Python image to version `3.12` - Include `curl` installation in Dockerfile - Add Rust installation using `rustup.rs` script and configure PATH to include Cargo directory
1 parent b9021c0 commit 06cbd18

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
FROM python:3.13.0b2-slim
1+
FROM python:3.12-slim
22

3-
RUN apt-get update && apt-get install -y ffmpeg
3+
RUN apt-get update && apt-get install -y ffmpeg curl
4+
5+
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
6+
ENV PATH="/root/.cargo/bin:${PATH}"
47

58
WORKDIR /app
69

0 commit comments

Comments
 (0)