Skip to content

Commit

Permalink
fix: missing \ in dockerfile 8.3 (#718)
Browse files Browse the repository at this point in the history
  • Loading branch information
saullo authored Sep 3, 2024
1 parent 3f75258 commit 0a7e289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtimes/8.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN apt-get update \
php8.3-msgpack php8.3-igbinary php8.3-redis \
php8.3-memcached php8.3-pcov php8.3-imagick php8.3-xdebug \
&& pecl install swoole-5.1.2 \
&& echo "extension=swoole.so" > /etc/php/8.3/cli/conf.d/20-swoole.ini
&& echo "extension=swoole.so" > /etc/php/8.3/cli/conf.d/20-swoole.ini \
&& curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
&& echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_VERSION.x nodistro main" > /etc/apt/sources.list.d/nodesource.list \
Expand Down

2 comments on commit 0a7e289

@kaanxweb
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've been at this for 3 hours. Thank you, lol

@bbenkert
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I spent the last few hours wondering why I was getting error "failed to solve: dockerfile parse error on line 36: unknown instruction: &&". Now I know why. Thanks!

Please sign in to comment.