37 lines
929 B
Docker
37 lines
929 B
Docker
# Use an official Python runtime as the base image
|
|
FROM python:3.11-slim
|
|
|
|
# Set environment variables
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
gcc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy the requirements file
|
|
COPY requirements.txt /app/requirements.txt
|
|
|
|
# Install Python dependencies
|
|
RUN pip install --no-cache-dir --upgrade pip
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy the project files
|
|
COPY . /app/
|
|
|
|
# Create non-root user
|
|
RUN adduser --disabled-password --gecos '' appuser
|
|
RUN chown -R appuser:appuser /app
|
|
USER appuser
|
|
|
|
# Expose port (based on the AGENTS.md file, Python should use 21000)
|
|
EXPOSE 21000
|
|
|
|
# Run the application
|
|
CMD ["uvicorn", "merchants_of_hope.main:app", "--host", "0.0.0.0", "--port", "21000"] |