Spaces:
Running
Running
File size: 343 Bytes
c5450d3 5d52e87 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Use lightweight Python image
FROM python:3.11-slim
# Set working directory inside container
WORKDIR /app
# Copy project files into container
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir flask edge-tts
# Expose Flask port (change if your app uses different port)
EXPOSE 7860
# Run the app
CMD ["python", "./app.py"]
|