هذا الالتزام موجود في:
ahmedgamalyousef
2025-09-28 00:07:19 +03:00
الأصل 598ec506a2
التزام 75166ab287
5 ملفات معدلة مع 262 إضافات و134 حذوفات

22
Dockerfile Normal file
عرض الملف

@@ -0,0 +1,22 @@
# -----------------------------
# Dockerfile for Fruit API
# -----------------------------
# Use official Python image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the API code
COPY fruit_api.py .
# Expose port
EXPOSE 5000
# Run the API
CMD ["python", "fruit_api.py"]