captcha-solver-api / Dockerfile
Vdv26's picture
Upload 3 files
9497244 verified
Raw
History Blame Contribute Delete
494 Bytes
# Use an official Python runtime as a parent image
FROM python:3.10-slim
# Set the working directory
WORKDIR /code
# Copy the requirements file and install dependencies
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Copy the rest of your backend code (including the model)
COPY . /code
# Hugging Face Spaces routes traffic through port 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]