openclawai / Dockerfile
LobsterDeployBot
Deploy Lobster Bot with Chinese menu via Agent
24a412c
raw
history blame contribute delete
274 Bytes
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Command to run the application
CMD ["python", "app.py"]