Files
DB-GPT/Dockerfile
2023-05-15 15:25:26 +08:00

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"]