AICEO / Dockerfile
mgbam's picture
πŸ” Add AutoExec AI full application files for Hugging Face Space
a22d93a
raw
history blame
245 Bytes
FROM python:3.10
WORKDIR /code
COPY requirements.txt .
RUN apt-get update && apt-get install -y redis-server && pip install --no-cache-dir -r requirements.txt
COPY . .
COPY start.sh /start.sh
RUN chmod +x /start.sh
ENTRYPOINT ["/start.sh"]