SHL / Dockerfile
joker7094's picture
added frontend
36447ef
raw
history blame contribute delete
396 Bytes
# Use Python 3.9 slim image as base
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy requirements file
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code and data files
COPY . .
# Expose port
EXPOSE 7860
# Command to run the application
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]