Skip to content

Commit

Permalink
top-level reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
stelios-ritual committed Oct 7, 2024
1 parent cc20038 commit 20ad930
Show file tree
Hide file tree
Showing 18 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion projects/gpt4/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD https://astral.sh/uv/install.sh /install.sh
RUN chmod 755 /install.sh
RUN /install.sh && rm /install.sh

COPY src/requirements.txt .
COPY requirements.txt .

RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion projects/hello-world/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD https://astral.sh/uv/install.sh /install.sh
RUN chmod 755 /install.sh
RUN /install.sh && rm /install.sh

COPY src/requirements.txt .
COPY requirements.txt .

RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion projects/hello-world/container/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ WORKDIR /app

RUN apt-get update

COPY src/requirements.txt .
COPY requirements.txt .

RUN pip install --upgrade pip && pip install -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion projects/onnx-iris/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD https://astral.sh/uv/install.sh /install.sh
RUN chmod 755 /install.sh
RUN /install.sh && rm /install.sh

COPY src/requirements.txt .
COPY requirements.txt .

RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion projects/prompt-to-nft/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD https://astral.sh/uv/install.sh /install.sh
RUN chmod 755 /install.sh
RUN /install.sh && rm /install.sh

COPY src/requirements.txt .
COPY requirements.txt .

RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
quart==0.19.4
ritual-arweave==0.1.0
tqdm==4.66.4
web3==6.15.0
2 changes: 1 addition & 1 deletion projects/prompt-to-nft/stablediffusion/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD https://astral.sh/uv/install.sh /install.sh
RUN chmod 755 /install.sh
RUN /install.sh && rm /install.sh

COPY src/requirements.txt .
COPY requirements.txt .

RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion projects/tgi-llm/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD https://astral.sh/uv/install.sh /install.sh
RUN chmod 755 /install.sh
RUN /install.sh && rm /install.sh

COPY src/requirements.txt .
COPY requirements.txt .

RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion projects/tgi-llm/ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ WORKDIR /app

RUN apt-get update

COPY src/requirements.txt .
COPY requirements.txt .

RUN pip install --upgrade pip && pip install -r requirements.txt

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion projects/torch-iris/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ADD https://astral.sh/uv/install.sh /install.sh
RUN chmod 755 /install.sh
RUN /install.sh && rm /install.sh

COPY src/requirements.txt .
COPY requirements.txt .

RUN /root/.cargo/bin/uv pip install --system --no-cache -r requirements.txt

Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ web3==6.15.0
onnx==1.16.1
onnxruntime==1.17.1
pre-commit==2.15.0
python-dotenv==1.0.0
ritual-arweave==0.1.0

0 comments on commit 20ad930

Please sign in to comment.