[CHIMERA] Fix build & switch to abliterated model
Browse files- Dockerfile +4 -7
Dockerfile
CHANGED
|
@@ -2,17 +2,14 @@ FROM python:3.11-slim
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
RUN apt-get update && apt-get install -y
|
| 6 |
-
RUN git clone https://github.com/agent0ai/agent-zero.git /app/agent-zero
|
| 7 |
|
| 8 |
-
|
| 9 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
| 10 |
-
RUN pip install --no-cache-dir gradio huggingface_hub
|
| 11 |
|
| 12 |
-
RUN mkdir -p /app/workspace/projects /app/workspace/shared/task_queue /app/workspace/logs /app/workspace/memory
|
| 13 |
|
| 14 |
COPY wrapper.py /app/wrapper.py
|
| 15 |
COPY config.env /app/config.env
|
| 16 |
|
| 17 |
EXPOSE 7860
|
| 18 |
-
CMD ["python", "/app/wrapper.py"]
|
|
|
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
+
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
| 6 |
|
| 7 |
+
RUN pip install --no-cache-dir gradio requests huggingface_hub
|
|
|
|
|
|
|
| 8 |
|
| 9 |
+
RUN mkdir -p /app/workspace/projects/code-architect /app/workspace/shared/task_queue /app/workspace/logs /app/workspace/memory
|
| 10 |
|
| 11 |
COPY wrapper.py /app/wrapper.py
|
| 12 |
COPY config.env /app/config.env
|
| 13 |
|
| 14 |
EXPOSE 7860
|
| 15 |
+
CMD ["python", "/app/wrapper.py"]
|