mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 06:24:20 +01:00
10 lines
141 B
Docker
10 lines
141 B
Docker
FROM python:3.11
|
|
|
|
WORKDIR /app
|
|
COPY scripts/ /app
|
|
COPY requirements.txt /app
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD ["python", "main.py"]
|