AI_Resume_Scanner / Dockerfile.cloud
majidali1256's picture
fix: clean requirements.txt and rename Dockerfile to avoid Gradio build collision on Hugging Face Spaces
4c64166
Raw
History Blame Contribute Delete
173 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
EXPOSE 8000
CMD ["python", "app.py"]