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