1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-22 05:18:23 +02:00

Use an alpine image rather than Debian buster: this is smaller

This commit is contained in:
Yohann D'ANELLO
2020-06-03 20:42:12 +02:00
parent a1d02ce657
commit dd62a32e08
6 changed files with 950 additions and 19 deletions

View File

@ -50,6 +50,7 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'django.forms',
'django_extensions',
'polymorphic',
'crispy_forms',
'django_tables2',
@ -182,6 +183,3 @@ if os.getenv("TFJM_STAGE", "dev") == "prod":
from .settings_prod import *
else:
from .settings_dev import *
INSTALLED_APPS += [
"django_extensions"
]