Skip to content

Commit

Permalink
ci: Test time
Browse files Browse the repository at this point in the history
  • Loading branch information
Venatum committed Apr 11, 2024
1 parent 68de351 commit e814599
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
dockerfile: "*.Dockerfile"

docker_build:
name: "Docker build: ${{ matrix.os_flavour }} for ${{ matrix.ps_version }}"
name: "Docker build: ${{ matrix.os_flavour }} for ${{ matrix.ps_version }} with ${{ matrix.server_flavour }}"
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion docker/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN \
# The PrestaShop docker entrypoint
COPY ./assets/docker_run.sh /tmp/

RUN if [[ ${SERVER_FLAVOUR} = *"fpm"* ]]; \
RUN if [ "$SERVER_FLAVOUR" = "fpm" ]; \
then sed 's/{PHP_CMD}/php-fpm/' /tmp/docker_run.sh; \
else \
sed 's/{PHP_CMD}/apache2-foreground/' /tmp/docker_run.sh; \
Expand Down
3 changes: 2 additions & 1 deletion docker/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ RUN export DEBIAN_FRONTEND=noninteractive \
# The PrestaShop docker entrypoint
COPY ./assets/docker_run.sh /tmp/

RUN if [[ ${SERVER_FLAVOUR} = *"fpm"* ]]; \
RUN if [ "$SERVER_FLAVOUR" = "fpm" ]; \
then sed 's/{PHP_CMD}/php-fpm/' /tmp/docker_run.sh; \
else \
sed 's/{PHP_CMD}/apache2-foreground/' /tmp/docker_run.sh; \
fi


# Handling a dynamic domain
# Probably, or at least its usage must be described in the README file
# COPY ./assets/docker_updt_ps_domains.php /tmp/
Expand Down

0 comments on commit e814599

Please sign in to comment.