mirror of
https://github.com/johndoe6345789/goodpackagerepo.git
synced 2026-04-24 13:54:59 +00:00
Fix Docker build context paths and add runtime API URL configuration
Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
@@ -3,14 +3,14 @@ FROM python:3.11-slim
|
||||
WORKDIR /app
|
||||
|
||||
# Install dependencies
|
||||
COPY requirements.txt .
|
||||
COPY backend/requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
# Copy application files
|
||||
COPY app.py auth.py ./
|
||||
COPY backend/app.py backend/auth.py backend/config_db.py ./
|
||||
|
||||
# Copy schema from parent directory
|
||||
COPY ../schema.json /app/schema.json
|
||||
COPY schema.json /app/schema.json
|
||||
|
||||
# Create data directory
|
||||
RUN mkdir -p /data/blobs /data/meta
|
||||
|
||||
Reference in New Issue
Block a user