From 594b62ab11cbc38d0bd6141e86be0c7e3dff89a0 Mon Sep 17 00:00:00 2001 From: mc33 Date: Fri, 24 Jan 2025 01:17:57 +0100 Subject: [PATCH] remove migrations from CI/DI --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6a53b71..197c435 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN apk update && apk add --no-cache mariadb-connector-c-dev && apk add --no-cac RUN python -m venv venv \ && . venv/bin/activate \ && pip install --no-cache-dir -r requirements.txt -RUN source venv/bin/activate && python manage.py makemigrations && python manage.py migrate +#RUN source venv/bin/activate && python manage.py makemigrations && python manage.py migrate EXPOSE 8080