AI_Chat_With_Tools / Dockerfile
muhammad1707's picture
docs: Update SDK from gradio to docker and add app_port to README.
c6a6b27
Raw
History Blame Contribute Delete
272 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
COPY . /app
RUN npm install
RUN npm run build
RUN pip install --no-cache-dir -r back/requirements.txt
WORKDIR /app/back
CMD ["python", "server.py"]