whFalsa / Dockerfile
codeBOKER's picture
Sync HF remote changes: python 3.14, README frontmatter, remove expose binary
a4b8078
Raw
History Blame Contribute Delete
227 Bytes
FROM python:3.14
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PORT=7860
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]