mirror of
https://github.com/rasbt/LLMs-from-scratch.git
synced 2026-04-10 12:33:42 +00:00
Update docker file
This commit is contained in:
@@ -8,9 +8,11 @@ RUN apt-get update && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Install uv
|
||||
ADD https://astral.sh/uv/install.sh /uv-installer.sh
|
||||
RUN sh /uv-installer.sh && rm /uv-installer.sh
|
||||
ENV PATH="/root/.local/bin/:$PATH"
|
||||
RUN curl -fsSL https://astral.sh/uv/install.sh -o uv-installer.sh && \
|
||||
sh uv-installer.sh && \
|
||||
rm uv-installer.sh
|
||||
|
||||
ENV PATH="/root/.local/bin:$PATH"
|
||||
|
||||
# Install Python packages
|
||||
COPY requirements.txt requirements.txt
|
||||
|
||||
Reference in New Issue
Block a user