From ac6e56485274151462e29413649fc4938f63b9ae Mon Sep 17 00:00:00 2001 From: LEVIANA Date: Fri, 7 Mar 2025 23:15:04 +0800 Subject: [PATCH 1/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 34fab814..578bf990 100644 --- a/README.md +++ b/README.md @@ -109,3 +109,4 @@ Owner | Container Type | Status | Artifacts Arm | **TensorFlow AArch64 Neoverse-N1 CPU** Stable | Static | [Docker Hub](https://hub.docker.com/r/armswdev/tensorflow-arm-neoverse-n1) AMD| **Linux ROCm GPU** Stable | Static | [Docker Hub](https://hub.docker.com/r/rocm/tensorflow) Intel | **Linux CPU with Intel oneDNN** Stable | Static | [Docker Hub](https://hub.docker.com/r/intel/intel-optimized-tensorflow) +_*Leviana*_ From 375274b262b5cdbdb60f966373f7ff98f7b8e216 Mon Sep 17 00:00:00 2001 From: LEVIANA Date: Fri, 7 Mar 2025 23:20:37 +0800 Subject: [PATCH 2/3] Update README.md --- README.md | 46 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 578bf990..bf97b9d9 100644 --- a/README.md +++ b/README.md @@ -109,4 +109,48 @@ Owner | Container Type | Status | Artifacts Arm | **TensorFlow AArch64 Neoverse-N1 CPU** Stable | Static | [Docker Hub](https://hub.docker.com/r/armswdev/tensorflow-arm-neoverse-n1) AMD| **Linux ROCm GPU** Stable | Static | [Docker Hub](https://hub.docker.com/r/rocm/tensorflow) Intel | **Linux CPU with Intel oneDNN** Stable | Static | [Docker Hub](https://hub.docker.com/r/intel/intel-optimized-tensorflow) -_*Leviana*_ + +_*Leviana*_ ==> *DOCKER File* +# Use an official Python 3.10 base image +FROM python:3.10-slim-buster + +# Set the working directory inside the container +WORKDIR /app + +# Copy requirements.txt (if you have one) to the container +# COPY requirements.txt . + +# Install necessary system dependencies (if any) +# For example, if TensorFlow requires build-essential: +RUN apt-get update && apt-get install -y --no-install-recommends \ + build-essential \ + && rm -rf /var/lib/apt/lists/* + +# Install Python dependencies using pip +# Use --no-cache-dir for smaller image size. And use --upgrade pip +RUN pip install --upgrade pip +RUN pip install --no-cache-dir pandas tensorflow numpy + +# Alternative using a requirements.txt: +# RUN pip install --no-cache-dir -r requirements.txt + +# Copy your application code (if any) to the container +# COPY . . + +# Define the command to run when the container starts +# (Optional: If you have a specific script to run) +# CMD ["python", "your_script.py"] +pandas +tensorflow +numpy +docker build -t my-python-app . +docker run -it my-python-app bash +docker run my-python-app +python +>>> import pandas as pd +>>> import tensorflow as tf +>>> import numpy as np +>>> print(pd.__version__) +>>> print(tf.__version__) +>>> print(np.__version__) +>>> exit() From b146cdecd3b08dafb9e69eb650482f3e98a1dae0 Mon Sep 17 00:00:00 2001 From: LEVIANA Date: Fri, 7 Mar 2025 23:23:47 +0800 Subject: [PATCH 3/3] Update README.md Anyone can sponsord to me? --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf97b9d9..27eb1dc9 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Arm | **TensorFlow AArch64 Neoverse-N1 CPU** Stable | Static | [Docker Hub](http AMD| **Linux ROCm GPU** Stable | Static | [Docker Hub](https://hub.docker.com/r/rocm/tensorflow) Intel | **Linux CPU with Intel oneDNN** Stable | Static | [Docker Hub](https://hub.docker.com/r/intel/intel-optimized-tensorflow) -_*Leviana*_ ==> *DOCKER File* +_*Leviana*_ *DOCKER File* # Use an official Python 3.10 base image FROM python:3.10-slim-buster