File size: 412 Bytes
b20273d
 
 
 
5929ed6
b20273d
5929ed6
b20273d
5929ed6
b20273d
 
 
 
 
5929ed6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.11-slim

WORKDIR /app

RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*

RUN pip install --no-cache-dir gradio requests huggingface_hub

RUN mkdir -p /app/workspace/projects/research /app/workspace/shared/task_queue /app/workspace/logs /app/workspace/memory

COPY wrapper.py /app/wrapper.py
COPY config.env /app/config.env

EXPOSE 7860
CMD ["python", "/app/wrapper.py"]