diff --git a/backend/Dockerfile b/backend/Dockerfile index 8b4a99e..676144b 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -4,8 +4,9 @@ WORKDIR /app COPY pyproject.toml uv.lock ./ RUN uv sync --frozen --no-dev +RUN uv run manage.py migrate COPY . . EXPOSE 8000 -CMD ["uv", "run", "--frozen", "gunicorn", "--bind", "0.0.0.0:8000", "config.wsgi:application"] \ No newline at end of file +CMD ["uv", "run", "--frozen", "gunicorn", "--bind", "0.0.0.0:8000", "config.wsgi:application"]