Merge pull request #581 from kojeomstudio/add-docker-file

add docker file and start.sh
This commit is contained in:
mannaandpoem 2025-03-16 12:19:18 +08:00 committed by GitHub
commit 4783f8a0d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM python:3.12-slim
WORKDIR /app/OpenManus
RUN apt-get update && apt-get install -y --no-install-recommends git curl \
&& rm -rf /var/lib/apt/lists/* \
&& (command -v uv >/dev/null 2>&1 || pip install --no-cache-dir uv)
COPY . .
RUN uv pip install --system -r requirements.txt
CMD ["bash"]