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

M3 silicon support and fix 'Hash Sum Mismatch' #734

Merged
merged 1 commit into from
Sep 27, 2024

Conversation

ConrDev
Copy link
Contributor

@ConrDev ConrDev commented Sep 26, 2024

Added support for M3 Apple Silicon, ensuring compatibility with newer hardware platforms, with the following changes:

Fix for 'Hash Sum Mismatch' Error:

Resolved an issue causing "Hash sum mismatch" errors during package installation by configuring custom apt options in the Dockerfile.

Dockerfile Updates:

Modified the Dockerfile to optimize APT package handling and fix proxy-related issues. The following APT configuration was added:

RUN echo "Acquire::http::Pipeline-Depth 0;" > /etc/apt/apt.conf.d/99custom && \
    echo "Acquire::http::No-Cache true;" >> /etc/apt/apt.conf.d/99custom && \
    echo "Acquire::BrokenProxy    true;" >> /etc/apt/apt.conf.d/99custom

This configuration resolves caching issues and ensures that the pipeline depth and proxy settings don't lead to broken package installations.

APT Update and Upgrade:

Added a RUN command to update and upgrade system packages:

RUN apt-get update && apt-get upgrade -y

This ensures that the environment is up-to-date with the latest security patches and improvements.

@taylorotwell taylorotwell merged commit 9e45600 into laravel:1.x Sep 27, 2024
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants