fix tests

This commit is contained in:
Adil Hafeez 2025-12-26 00:55:12 -08:00
parent a57aa8b145
commit 72b0adef76
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
5 changed files with 722 additions and 6 deletions

View file

@ -4,13 +4,13 @@
FROM python:3.12 as builder
# Install uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
RUN pip install --no-cache-dir uv
# Set working directory
WORKDIR /code
# Copy dependency files
COPY pyproject.toml ./
COPY pyproject.toml uv.lock ./
RUN touch README.md
# Install dependencies using uv