mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 16:48:30 +00:00
15 lines
277 B
Docker
15 lines
277 B
Docker
FROM python:3.11-slim
|
|
|
|
# Install common utilities
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
curl \
|
|
wget \
|
|
software-properties-common
|
|
|
|
# Clean up
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set the working directory
|
|
WORKDIR /workspace
|