Skip to content

Commit

Permalink
fix: image build (#163)
Browse files Browse the repository at this point in the history
* fix: image build

* chore: bump application_version

* docs: update CHANGELOG.md
  • Loading branch information
wazelin authored Jul 4, 2024
1 parent 52d1cc8 commit c299f11
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,22 @@
CHANGELOG
=========

2.9.0
-----
2.10.1
------

* Fixed dependencies installation in build time

2.10.0
------

* Added various custom-claim presets
* Upgraded to PHP 8.3

2.9.0
-----

* Upgraded LTI 1.3 library dependencies

2.8.0
-----

Expand Down
2 changes: 1 addition & 1 deletion config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ parameters:
application_env: '%env(resolve:APP_ENV)%'
application_api_key: '%env(resolve:APP_API_KEY)%'
application_vendors: '%kernel.project_dir%/vendor/composer/installed.php'
application_version: '2.10.0'
application_version: '2.10.1'
container.dumper.inline_factories: true
cache.redis.namespace: '%env(default:cache.redis.namespace.default:REDIS_CACHE_NAMESPACE)%'
cache.redis.namespace.default: 'devkit'
Expand Down
2 changes: 1 addition & 1 deletion docker/kube/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ COPY . .

# Install required packages
RUN set -eux; \
composer self-update 2.6.6; # TODO update symfony/flex to the latest version instead \
composer self-update 2.6.6; \
composer install -n --optimize-autoloader --no-dev --prefer-dist; \
composer dump-autoload -n --optimize --no-dev --classmap-authoritative; \
rm -rf .build/;
Expand Down

0 comments on commit c299f11

Please sign in to comment.