Files
DB-GPT/Dockerfile
2023-05-14 12:00:37 +05:30

22 lines
272 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/vicuna_server.py"]
CMD ["python", "pilot/server/webserver.py"]