This commit is contained in:
Ryan Shpeherd
2026-08-10 18:36:57 -04:00
parent 0d6b5b9b9d
commit 7a53b60371
5 changed files with 790 additions and 301 deletions
+2 -2
View File
@@ -6,10 +6,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
&& rm -rf /var/lib/apt/lists/*
COPY ui/requirements.txt /app/requirements.txt
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY ui/ /app/ui/
COPY . .
EXPOSE 5000