]> git.parisson.com Git - teleforma.git/commitdiff
Updating docker image
authorYoan Le Clanche <yoanl@pilotsystems.net>
Tue, 4 Jul 2023 11:58:59 +0000 (13:58 +0200)
committerYoan Le Clanche <yoanl@pilotsystems.net>
Tue, 4 Jul 2023 11:58:59 +0000 (13:58 +0200)
Dockerfile
requirements.txt
teleforma/migrations/0027_course_quiz.py [new file with mode: 0644]

index 0ed62a73393399ab87211b089971fcffd659220c..0938e97325100da7955b10b76d3620733b869d45 100644 (file)
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-FROM python:3
+FROM python:3.9-buster
 
 MAINTAINER Guillaume Pellerin <yomguy@parisson.com>
 
index e758853e9cba9bccddccd29ac87fa97f5ee8eeb7..e3f48eef7798990b98a7d7e5c64f6300b18816ab 100644 (file)
@@ -11,7 +11,7 @@ dj_pagination==2.5.0 # used by postman
 django-jazzmin==2.4.7
 django-json-rpc==0.7.1
 # django-google-tools==1.1.0
-django-nvd3==0.8.2
+django-nvd3==0.9.7
 django-postman==4.2
 django-tinymce==3.3.0
 -e git+https://git.parisson.com/git/django-unique-session.git@master#egg=django-unique-session
diff --git a/teleforma/migrations/0027_course_quiz.py b/teleforma/migrations/0027_course_quiz.py
new file mode 100644 (file)
index 0000000..6214342
--- /dev/null
@@ -0,0 +1,19 @@
+# Generated by Django 3.2.13 on 2022-10-06 16:30
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('quiz', '__first__'),
+        ('teleforma', '0026_period_nb_script_per_session'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='course',
+            name='quiz',
+            field=models.ManyToManyField(blank=True, null=True, to='quiz.Quiz', verbose_name='quiz'),
+        ),
+    ]