pr-9339-all-demos / Dockerfile
pngwn's picture
pngwn HF staff
Update Dockerfile
2fb51bd verified
raw
history blame contribute delete
244 Bytes
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"]