feature-test-1 / Dockerfile
rphr's picture
Create Dockerfile
6aa1c62 verified
Raw
History Blame Contribute Delete
449 Bytes
# Use an official lightweight Python image
FROM python:3.11-slim
# Set the working directory in the container
WORKDIR /app
# Copy the server script into the container
COPY server.py /app/
# Install the required dependencies
RUN pip install --no-cache-dir fastapi uvicorn httpx
# Expose the port the app runs on
EXPOSE 7860
# Command to run the application binding to 0.0.0.0
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]