Files
school_compare/integrator/Dockerfile
T

14 lines
272 B
Docker
Raw Normal View History

FROM python:3.12-slim
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY scripts/ ./scripts/
COPY server.py .
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8001"]