مراية لـ
https://github.com/GhaymahCloud/Ghaymah-flask-starter.git
تم المزامنة 2025-08-21 23:02:30 +00:00
12 أسطر
146 B
Docker
12 أسطر
146 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["python", "main.py"] |