suhail commited on
Commit
cac2b72
·
1 Parent(s): 8294216
Files changed (2) hide show
  1. Dockerfile +1 -1
  2. alembic.ini +1 -1
Dockerfile CHANGED
@@ -100,7 +100,7 @@ RUN pip install --no-cache-dir -r requirements.txt
100
  COPY src/ ./src
101
 
102
  # Copy Alembic migrations and config
103
- COPY src/alembic/ ./src/alembic/
104
  COPY alembic.ini .
105
 
106
  # Copy specs (MCP tools contracts)
 
100
  COPY src/ ./src
101
 
102
  # Copy Alembic migrations and config
103
+ COPY src/alembic/ ./alembic/
104
  COPY alembic.ini .
105
 
106
  # Copy specs (MCP tools contracts)
alembic.ini CHANGED
@@ -2,7 +2,7 @@
2
 
3
  [alembic]
4
  # path to migration scripts
5
- script_location = alembic
6
 
7
  # template used to generate migration file names
8
  file_template = %%(year)d%%(month).2d%%(day).2d_%%(hour).2d%%(minute).2d_%%(rev)s_%%(slug)s
 
2
 
3
  [alembic]
4
  # path to migration scripts
5
+ script_location = src/alembic
6
 
7
  # template used to generate migration file names
8
  file_template = %%(year)d%%(month).2d%%(day).2d_%%(hour).2d%%(minute).2d_%%(rev)s_%%(slug)s