Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev Docker: add php ast ext #41288

Merged
merged 4 commits into from
Jan 24, 2025
Merged
Changes from 1 commit
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
7 changes: 4 additions & 3 deletions tools/docker/Dockerfile.monorepo
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ RUN --mount=type=cache,target=/var/lib/apt/lists/,sharing=private \
"php${PHP_VERSION}-xml" \
"php${PHP_VERSION}-zip" \
rsync \
&& apt-get remove --purge --auto-remove -y gpg software-properties-common \
&& find /var/ -name '*-old' -delete && rm -rf /var/log/dpkg.log /var/log/alternatives.log /var/log/apt/ ~/.launchpadlib
kraftbj marked this conversation as resolved.
Show resolved Hide resolved
&& apt-get remove --purge -y python3-apt \
&& apt-get remove --purge --auto-remove -y gpg software-properties-common

# Install Composer
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" \
Expand Down Expand Up @@ -76,7 +76,8 @@ RUN chmod +x /usr/local/bin/monorepo-entrypoint.sh
# Set up locale properly
RUN apt-get update && apt-get install -y locales \
&& locale-gen en_US.UTF-8 \
&& update-locale LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8
&& update-locale LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 \
&& find /var/ -name '*-old' -delete && rm -rf /var/log/dpkg.log /var/log/alternatives.log /var/log/apt/ ~/.launchpadlib
kraftbj marked this conversation as resolved.
Show resolved Hide resolved

ENV LANG=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
Expand Down
Loading