mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-07 22:33:57 -05:00
- Move `autogpt/Dockerfile` to `Dockerfile.autogpt` - Write new selective `.dockerignore` (in repo root) to keep build context clean - Amend `autogpt/docker-compose.yml` and all `autogpt-docker-*.yml` workflows accordingly - Include `forge/` in docker build context so it can be used as a path dependency - Include `frontend/` in docker builds
29 lines
453 B
Plaintext
29 lines
453 B
Plaintext
# Ignore everything by default, selectively add things to context
|
|
*
|
|
|
|
# AutoGPT
|
|
!autogpt/autogpt/
|
|
!autogpt/pyproject.toml
|
|
!autogpt/poetry.lock
|
|
!autogpt/README.md
|
|
!autogpt/tests/
|
|
|
|
# Benchmark
|
|
!benchmark/agbenchmark/
|
|
!benchmark/pyproject.toml
|
|
!benchmark/poetry.lock
|
|
!benchmark/README.md
|
|
|
|
# Forge
|
|
!forge/forge/
|
|
!forge/pyproject.toml
|
|
!forge/poetry.lock
|
|
!forge/README.md
|
|
|
|
# Frontend
|
|
!frontend/build/web/
|
|
|
|
# Explicitly re-ignore some folders
|
|
.*
|
|
**/__pycache__
|