mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-22 01:22:34 +00:00
docker deployment
This commit is contained in:
21
Dockerfile
Normal file
21
Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
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/vicuna_server.py"]
|
||||
CMD ["python", "pilot/server/webserver.py"]
|
||||
|
||||
|
Reference in New Issue
Block a user