fix: Do not use compress anymore for Docker image

Fixes #1619
This commit is contained in:
David Larlet 2024-02-18 10:22:24 -05:00
parent e72bc3fb8e
commit 875c7c4c69
No known key found for this signature in database
GPG key ID: 3E2953A359E7E7BD
3 changed files with 5 additions and 3 deletions

View file

@ -9,7 +9,5 @@ umap wait_for_database
umap migrate umap migrate
# then collect static files # then collect static files
umap collectstatic --noinput umap collectstatic --noinput
# compress static files
umap compress
# run uWSGI # run uWSGI
exec uwsgi --ini docker/uwsgi.ini exec uwsgi --ini docker/uwsgi.ini

View file

@ -1,5 +1,9 @@
# Changelog # Changelog
## 2.0.1 - 2024-02-18
* Do not use the `compress` command anymore for the Docker image (#1620)
## 2.0.0 - 2024-02-16 ## 2.0.0 - 2024-02-16
This release is inauguring a new era in versionning uMap: in the future, we'll take care of better documenting breaking changes, so expect more major releases from now on. More details on [how we version](https://docs.umap-project.org/en/master/release/#when-to-make-a-release). This release is inauguring a new era in versionning uMap: in the future, we'll take care of better documenting breaking changes, so expect more major releases from now on. More details on [how we version](https://docs.umap-project.org/en/master/release/#when-to-make-a-release).

View file

@ -1 +1 @@
VERSION = "2.0.0" VERSION = "2.0.1"