Commit
·
aa4da3d
1
Parent(s):
c1b3777
add: uv integration
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -10,11 +10,10 @@ RUN apt-get update && apt-get install -y \
|
|
10 |
wget \
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
-
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
|
14 |
-
|
15 |
COPY requirements.txt ./
|
16 |
COPY src/ ./src/
|
17 |
|
|
|
18 |
RUN uv venv
|
19 |
RUN uv pip install -r requirements.txt
|
20 |
|
|
|
10 |
wget \
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
|
|
|
|
13 |
COPY requirements.txt ./
|
14 |
COPY src/ ./src/
|
15 |
|
16 |
+
RUN pip3 install -r uv
|
17 |
RUN uv venv
|
18 |
RUN uv pip install -r requirements.txt
|
19 |
|