Fix build for release

This commit is contained in:
Konstantin 2024-03-15 07:33:33 +01:00
parent 9a5489c170
commit 4d32d135d8
3 changed files with 8 additions and 3 deletions

View file

@ -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"

View file

@ -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

View file

@ -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