Commit
·
03f3959
1
Parent(s):
a059241
fix
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -8,9 +8,9 @@ RUN apt-get update && \
|
|
| 8 |
build-essential \
|
| 9 |
gcc \
|
| 10 |
ffmpeg \
|
| 11 |
-
supervisor && \
|
| 12 |
-
|
| 13 |
-
|
| 14 |
|
| 15 |
COPY requirements.txt .
|
| 16 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
@@ -21,7 +21,7 @@ COPY ./agents /app/agents
|
|
| 21 |
COPY ./data_ingestion /app/data_ingestion
|
| 22 |
COPY ./orchestrator /app/orchestrator
|
| 23 |
COPY ./streamlit /app/streamlit
|
| 24 |
-
COPY ./example_portfolio.json /app/example_portfolio.json
|
| 25 |
|
| 26 |
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
| 27 |
|
|
|
|
| 8 |
build-essential \
|
| 9 |
gcc \
|
| 10 |
ffmpeg \
|
| 11 |
+
supervisor && \
|
| 12 |
+
apt-get clean && \
|
| 13 |
+
rm -rf /var/lib/apt/lists/*
|
| 14 |
|
| 15 |
COPY requirements.txt .
|
| 16 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 21 |
COPY ./data_ingestion /app/data_ingestion
|
| 22 |
COPY ./orchestrator /app/orchestrator
|
| 23 |
COPY ./streamlit /app/streamlit
|
| 24 |
+
COPY ./example_portfolio.json /app/example_portfolio.json
|
| 25 |
|
| 26 |
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
| 27 |
|