Skip to content
Merged
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
3 changes: 2 additions & 1 deletion ML-Frameworks/pytorch-aarch64/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ where `YY` is the year, and `MM` the month of the increment.
### Added

### Changed

### Removed

### Fixed
Expand All @@ -31,6 +31,7 @@ where `YY` is the year, and `MM` the month of the increment.
- Adds the installation of `torchao` via nightly AArch64 wheels in Dockerfile.

### Changed
- Update Dockerfile to use `3.12-trixie` (instead of `3.12-slim`) for the base image.
- Updates `filelock` from 3.16.1 to 3.20.3.
- Updates `pillow` from 12.1.1 to 12.2.0.
- Updates `protobuf` from 5.29.5 to 5.29.6.
Expand Down
5 changes: 1 addition & 4 deletions ML-Frameworks/pytorch-aarch64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# SPDX-License-Identifier: Apache-2.0

# Specify DOCKER_IMAGE_MIRROR if you want to use a mirror of hub.docker.com
ARG BASE_IMAGE=python:3.12-slim
ARG BASE_IMAGE=python:3.12-trixie
ARG DOCKER_IMAGE_MIRROR=""

# ============================
Expand Down Expand Up @@ -79,9 +79,6 @@ ENV DOCKER_USER=debian

# Runtime OS bits + UI
RUN set -eux && \
apt-get update && \
apt-get install -y --no-install-recommends g++ && \
rm -rf /var/lib/apt/lists/* && \
if ! id "$DOCKER_USER" >/dev/null 2>&1; then useradd --create-home -s /bin/bash "$DOCKER_USER"; fi && \
echo '[ -n "$TERM" -a -r "$HOME/welcome.txt" ] && cat "$HOME/welcome.txt"' >> /etc/bash.bashrc && \
echo 'export PATH="$HOME/.local/bin:$HOME/.venv/bin:$PATH"' >> /etc/bash.bashrc && \
Expand Down
1 change: 1 addition & 0 deletions ML-Frameworks/tensorflow-aarch64/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ where `YY` is the year, and `MM` the month of the increment.
### Added

### Changed
- Update Dockerfile to use `3.12-trixie` (instead of `3.12-slim`) for the base image.
- Updates TensorFlow hash to fff60aa253b3d2a3cb9e0e988e72cdab761530d1 from nightly, May 28th
- Updates `filelock` from 3.17.0 to 3.20.3.
- Updates `pillow` from 12.1.1 to 12.2.0.
Expand Down
2 changes: 1 addition & 1 deletion ML-Frameworks/tensorflow-aarch64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: Apache-2.0

# Specify DOCKER_IMAGE_MIRROR if you want to use a mirror of hub.docker.com
ARG BASE_IMAGE=python:3.12-slim
ARG BASE_IMAGE=python:3.12-trixie
ARG DOCKER_IMAGE_MIRROR=""

# ============================
Expand Down