diff --git a/Dockerfile b/Dockerfile index 28f5d05..caef9df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,11 @@ RUN apt-get update --yes --quiet && apt-get install --yes --quiet --no-install-r libwebp-dev \ && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get upgrade -y + +# Install the latest version of pip. +RUN pip install --upgrade pip + # Install the application server. RUN pip install "gunicorn==20.0.4" diff --git a/Makefile b/Makefile index fc07be9..eaa5ad3 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.9 . + @docker build -t code.headbright.be/konstantin/iamkonstantin:1.0.10 . publish: - @docker push code.headbright.be/konstantin/iamkonstantin:1.0.9 + @docker push code.headbright.be/konstantin/iamkonstantin:1.0.10 diff --git a/requirements.txt b/requirements.txt index 16afd8f..2d4128d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ Django>=4.2,<5.1 wagtail>=6.0,<6.1 whitenoise>=6.6,<7.0 wagtailcodeblock>=1.29.0.2,<2.0 -django-tailwind>=3.8.0,<4.0 +django-tailwind>=3.6.0 django-browser-reload>=1.12 \ No newline at end of file