Closed ConrDev closed 1 month ago
Added support for M3 Apple Silicon, ensuring compatibility with newer hardware platforms, with the following changes:
Resolved an issue causing "Hash sum mismatch" errors during package installation by configuring custom apt options in the Dockerfile.
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.
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.
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.
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.
Added support for M3 Apple Silicon, ensuring compatibility with newer hardware platforms, with the following changes:
Fix for 'Hash Sum Mismatch' Error:
Dockerfile Updates:
APT Update and Upgrade: