diff --git a/Dockerfile b/Dockerfile index 98f74c1..07d2057 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,5 +6,7 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY app/ ./app/ +COPY alembic/ ./alembic/ +COPY alembic.ini . CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8720", "--log-level", "info"]