From 5c80ebe18dc04fba48c0229f0338042fe89ab538 Mon Sep 17 00:00:00 2001 From: Konstantin Kostov Date: Thu, 14 Mar 2024 04:26:21 +0100 Subject: [PATCH] Add dockerfile syntax --- Makefile | 4 ++-- iamkonstantin_web/settings/base.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a37e5dd..d83d5a3 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ help: @perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' build: - @docker build -t code.headbright.be/konstantin/iamkonstantin:1.0.6 . + @docker build -t code.headbright.be/konstantin/iamkonstantin:1.0.8 . publish: - @docker push code.headbright.be/konstantin/iamkonstantin:1.0.6 + @docker push code.headbright.be/konstantin/iamkonstantin:1.0.8 diff --git a/iamkonstantin_web/settings/base.py b/iamkonstantin_web/settings/base.py index 9831ee6..a01c022 100644 --- a/iamkonstantin_web/settings/base.py +++ b/iamkonstantin_web/settings/base.py @@ -184,6 +184,7 @@ WAGTAIL_CODE_BLOCK_LANGUAGES = ( ('bash', 'Bash/Shell'), ('css', 'CSS'), ('dart', 'Dart'), + ('docker', 'Docker'), ('elixir', 'Elixir'), ('go', 'Go'), ('html', 'HTML'),