Skip to content

Commit

Permalink
Update dev dockerfile
Browse files Browse the repository at this point in the history
`curl` is required to install blackfire and is not included in sylius/standard:1.11-traditional
Curl installation ask a question, this is why I also add the non-interactive mode.
  • Loading branch information
Nek- authored and jakubtobiasz committed Jan 19, 2023
1 parent b78c2b5 commit a63a6db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .docker/dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM sylius/standard:1.11-traditional

RUN apt-get update && apt-get install php8.0-xdebug && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*
RUN apt-get update && apt-get install curl php8.0-xdebug -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*

RUN version=$(php -r "echo PHP_MAJOR_VERSION.PHP_MINOR_VERSION;") \
&& architecture=$(uname -m) \
Expand Down

0 comments on commit a63a6db

Please sign in to comment.