Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/php-build-eb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN apt-get update && apt-get install -y \
&& docker-php-ext-enable apc --ini-name 20-docker-php-ext-apc.ini

# Composer
COPY --from=composer:1 /usr/bin/composer /usr/local/bin/composer
COPY --from=composer /usr/bin/composer /usr/local/bin/composer

# Fix npm
RUN mkdir /.npm && chown -R "${NPM_UID}:${NPM_GID}" "/.npm"
Expand Down
2 changes: 1 addition & 1 deletion docker/php-build-stepup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | b
&& nvm use default

# Composer
COPY --from=composer:1 /usr/bin/composer /usr/local/bin/composer
COPY --from=composer /usr/bin/composer /usr/local/bin/composer

# Fix npm
RUN mkdir /.npm && chown -R "${NPM_UID}:${NPM_GID}" "/.npm"
Expand Down
2 changes: 1 addition & 1 deletion docker/php-fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY ./conf/10-docker-opcache-openconext.conf /usr/local/etc/php/conf.d/
CMD ["/usr/local/sbin/php-fpm" , "-F"]

FROM fpmprod AS fpmdev
COPY --from=composer:1 /usr/bin/composer /usr/bin/composer
COPY --from=composer /usr/bin/composer /usr/bin/composer
COPY ./conf/xdebug.ini /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
RUN apk --update --no-cache add git npm yarn autoconf g++ make && \
docker-php-ext-install exif && \
Expand Down
2 changes: 1 addition & 1 deletion docker/php-test-stepup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ RUN source $NVM_DIR/nvm.sh \
&& npm install -g yarn

# Composer
COPY --from=composer:1 /usr/bin/composer /usr/local/bin/composer
COPY --from=composer /usr/bin/composer /usr/local/bin/composer

# Fix npm
RUN mkdir /.npm && chown -R "${NPM_UID}:${NPM_GID}" "/.npm"
Expand Down