welcome ghaymah

هذا الالتزام موجود في:
2026-07-27 23:06:16 +03:00
التزام 76f658bfab
17 ملفات معدلة مع 704 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,17 @@
# Use an official lightweight Python image
FROM python:3.9-slim
# Set the working directory inside the container
WORKDIR /app
# Install required dependencies
RUN pip install --no-cache-dir fastapi uvicorn
# Copy all project files into the container
COPY . /app
# Expose the application port
EXPOSE 8000
# Command to run the application using Uvicorn server
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]