mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-25 11:39:11 +00:00
22 lines
268 B
Docker
22 lines
268 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
git \
|
|
python3 \
|
|
pip
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
EXPOSE 3306
|
|
EXPOSE 8000
|
|
|
|
CMD ["python", "pilot/server/llmserver.py"]
|
|
CMD ["python", "pilot/server/webserver.py"]
|
|
|
|
|