Skip to content

Commit 05cee00

Browse files
committed
1456: Fixed "parameter not set" in api image
1 parent fcf4364 commit 05cee00

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

infrastructure/os2display/display-api-service/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,4 +151,5 @@ RUN chmod +x /usr/local/bin/docker-entrypoint.sh
151151

152152
WORKDIR ${APP_PATH}
153153

154-
CMD [ "docker-entrypoint.sh" ]
154+
CMD ["php-fpm"]
155+
ENTRYPOINT [ "docker-entrypoint.sh" ]

infrastructure/os2display/display-api-service/docker-entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ if [ "${1#-}" != "$1" ]; then
1717
fi
1818

1919
## Start the PHP FPM process.
20-
echo "Starting PHP 8.2 FPM"
20+
echo "Starting PHP 8.3 FPM"
2121

22-
exec php-fpm "$@"
22+
exec "$@"

0 commit comments

Comments
 (0)