FROM python:3.12-slim WORKDIR /app RUN apt-get update && apt-get install -y nodejs npm COPY . /app RUN pip install --no-cache-dir -r requirements.txt ENV GRADIO_SSR_MODE True EXPOSE 7860 CMD ["python", "demos/image_editor_events/run.py"]