Test / Dockerfile
1yahoo's picture
Update Dockerfile
46570d8 verified
raw
history blame contribute delete
253 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# ุชุฃูƒุฏ ู…ู† ุฃู† ุงู„ู…ู†ูุฐ ู‡ูˆ 7860 ูˆู‡ูˆ ุงู„ู…ู†ูุฐ ุงู„ุฑุณู…ูŠ ู„ู‡ุฌูŠู†ุฌ ููŠุณ
EXPOSE 7860
CMD ["python", "app.py"]