N.AIQ2 / Dockerfile
Deepak Sahu
update runtime
ad716b8
raw
history blame contribute delete
426 Bytes
# Use an official Python image
FROM langchain/langchain
# Set working directory
WORKDIR /app
# Copy your app files
COPY requirements.txt requirements.txt
# Install dependencies (adjust as needed)
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Install agents
RUN pip install -e pandas_expression_generator
# # Make the script executable
RUN chmod +x start.sh
# Start both processes
CMD ["./start.sh"]