dev #11

Merged
wtukatyr merged 2 commits from dev into main 2025-06-06 13:44:52 +03:00
3 changed files with 4 additions and 2 deletions
Showing only changes of commit f81388e462 - Show all commits

View File

@@ -5,7 +5,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY ./manage.py .
RUN ./manage.py makemigrations
# RUN ./manage.py migrate
COPY docker-entrypoint.sh .

View File

@@ -4,7 +4,10 @@
echo "Collect static files"
python manage.py collectstatic --noinput
# Apply database migrations
echo "Make migrations"
RUN ./manage.py makemigrations
echo "Apply database migrations"
python manage.py migrate