fix: path relativity
Some checks failed
Build and Publish Docker Images / build-and-push (backend) (push) Has been cancelled
Build and Publish Docker Images / build-and-push (frontend) (push) Has been cancelled

This commit is contained in:
2025-09-03 21:33:58 +02:00
parent 3f29d19ce3
commit 13e6576ce3

View File

@@ -10,11 +10,11 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install dependencies with uv
COPY backend/requirements.txt .
COPY requirements.txt .
RUN pip install --no-cache -r requirements.txt
# Copy application code
COPY backend/app/ ./app/
COPY app/ ./app/
# Create data directory for SQLite
RUN mkdir -p /app/data