comparison love/poppy/Dockerfile @ 38:cf9caa4abc3e

[Love] FE and BE. Can chat and render images. Also created MCP for powerpoint generations.
author MrJuneJune <me@mrjunejune.com>
date Mon, 01 Dec 2025 20:35:56 -0800
parents
children
comparison
equal deleted inserted replaced
37:fb9bcd3145cb 38:cf9caa4abc3e
1 FROM python:3.11-slim
2
3 WORKDIR /app
4
5 # Copy requirements first for better caching
6 COPY requirements.txt .
7 RUN pip install --no-cache-dir -r requirements.txt
8
9 # Copy the rest of the code
10 COPY . .
11
12 EXPOSE 8000
13
14 # Command is overridden in docker-compose
15 CMD ["python", "main.py"]