mirror of
https://github.com/tcsenpai/agenticSeek.git
synced 2025-06-03 01:30:11 +00:00
14 lines
267 B
Docker
14 lines
267 B
Docker
FROM ubuntu:20.04
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y python3 python3-pip && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python3", "--version"] |