duqing2026's picture
Initial commit of Chrome Extension Studio
8bc4ec7
raw
history blame contribute delete
250 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Create user with ID 1000 for Hugging Face Spaces
RUN useradd -m -u 1000 user
USER user
EXPOSE 7860
CMD ["python", "app.py"]