Skip to content

Commit de43c1c

Browse files
authored
Add Dashboard in Dockerfile
1 parent 0dd360b commit de43c1c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ FROM python:3.13-slim
33
WORKDIR /app
44

55
COPY agent.py .
6+
COPY dashboard.html .
7+
COPY README.md .
8+
COPY LICENSE .
69

710
RUN pip install flask docker psutil humanize gunicorn
811

9-
CMD ["gunicorn", "-b", "0.0.0.0:8080", "agent:app"]
12+
CMD ["gunicorn", "-b", "0.0.0.0:8080", "agent:app"]

0 commit comments

Comments
 (0)