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 e814599 commit df0587b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker/alpine.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ RUN \
COPY ./assets/docker_run.sh /tmp/

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

# Handling a dynamic domain
Expand Down
4 changes: 2 additions & 2 deletions docker/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ RUN export DEBIAN_FRONTEND=noninteractive \
COPY ./assets/docker_run.sh /tmp/

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


Expand Down

0 comments on commit df0587b

Please sign in to comment.