Spaces:
Sleeping
Sleeping
Trae Assistant
Initial commit: Enhanced Web Translator Assistant with Vue.js, file upload, and Chinese UI
63f129a | FROM python:3.11-slim | |
| ENV PYTHONDONTWRITEBYTECODE=1 \ | |
| PYTHONUNBUFFERED=1 \ | |
| PORT=7860 | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY app.py ./app.py | |
| COPY templates ./templates | |
| COPY static ./static | |
| EXPOSE 7860 | |
| CMD ["python", "app.py"] | |