File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
FROM php:8.1-cli
2
- RUN apt-get update \
3
- && apt-get install -y \
4
- libzip-dev \
5
- unzip \
6
- git \
7
- wget \
8
- && docker-php-ext-install -j$(nproc) bcmath sockets \
9
- && wget https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 \
10
- && mv test-reporter-latest-linux-amd64 /usr/bin/cc-test-reporter \
11
- && chmod +x /usr/bin/cc-test-reporter \
12
- && pecl install xdebug \
13
- && docker-php-ext-enable xdebug && \
14
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
2
+ RUN apt-get update
3
+ RUN apt-get install -y \
4
+ libzip-dev \
5
+ unzip \
6
+ git \
7
+ wget
8
+ RUN docker-php-ext-install -j$(nproc) bcmath sockets
9
+ RUN wget https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64
10
+ RUN mv test-reporter-latest-linux-amd64 /usr/bin/cc-test-reporter
11
+ RUN chmod +x /usr/bin/cc-test-reporter
12
+ RUN pecl install xdebug
13
+ RUN docker-php-ext-enable xdebug
14
+ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
15
15
16
16
WORKDIR /opt/project
17
17
You can’t perform that action at this time.
0 commit comments