Skip to content

Commit

Permalink
Merge pull request #207 from aroskanalen/feature/1456_os2diplay_image…
Browse files Browse the repository at this point in the history
…_fix

1456: Fixed "parameter not set" in api image
  • Loading branch information
turegjorup authored May 29, 2024
2 parents a4bec38 + 0d8f1b9 commit 29405e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

- [#207](https://github.com/os2display/display-api-service/pull/207)
- Fixed parameter not set error in (os2display) api container.

## [2.0.5] - 2024-05-21

- [#206](https://github.com/os2display/display-api-service/pull/206)
Expand Down
3 changes: 2 additions & 1 deletion infrastructure/os2display/display-api-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,5 @@ RUN chmod +x /usr/local/bin/docker-entrypoint.sh

WORKDIR ${APP_PATH}

CMD [ "docker-entrypoint.sh" ]
CMD ["php-fpm"]
ENTRYPOINT [ "docker-entrypoint.sh" ]
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ if [ "${1#-}" != "$1" ]; then
fi

## Start the PHP FPM process.
echo "Starting PHP 8.2 FPM"
echo "Starting PHP 8.3 FPM"

exec php-fpm "$@"
exec "$@"

0 comments on commit 29405e1

Please sign in to comment.