Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ package-lock.json.bak

# Rust
target/
Cargo.lock

# Test cache
.pytest_cache/
Expand Down
42 changes: 42 additions & 0 deletions reference-apps/fastapi-api-first/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/
*.egg-info/
.eggs/
dist/
build/

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# IDE
.vscode/
.idea/
*.iml

# Git
.git/
.gitignore

# Environment
.env
.env.*
*.env

# OS
.DS_Store
Thumbs.db

# Documentation
*.md
!README.md
docs/
42 changes: 42 additions & 0 deletions reference-apps/fastapi/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
ENV/
*.egg-info/
.eggs/
dist/
build/

# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/

# IDE
.vscode/
.idea/
*.iml

# Git
.git/
.gitignore

# Environment
.env
.env.*
*.env

# OS
.DS_Store
Thumbs.db

# Documentation
*.md
!README.md
docs/
4 changes: 4 additions & 0 deletions reference-apps/fastapi/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,9 @@ USER appuser
# Expose ports (HTTP and HTTPS)
EXPOSE 8000 8443

# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')" || exit 1

# Run initialization script (which calls start.sh)
CMD ["/app/init.sh"]
1 change: 0 additions & 1 deletion reference-apps/fastapi/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ pytest==9.0.2
pytest-asyncio==1.3.0
pytest-cov==7.0.0
pytest-mock==3.15.1
httpx==0.28.1 # Already listed above but needed for testing
35 changes: 35 additions & 0 deletions reference-apps/golang/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Go
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
vendor/

# IDE
.vscode/
.idea/
*.iml

# Git
.git/
.gitignore

# Environment
.env
.env.*
*.env

# OS
.DS_Store
Thumbs.db

# Documentation
*.md
!README.md
docs/

# Build artifacts
bin/
38 changes: 38 additions & 0 deletions reference-apps/nodejs/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.npm/
.yarn/

# Build
dist/
build/
coverage/

# IDE
.vscode/
.idea/
*.iml

# Git
.git/
.gitignore

# Environment
.env
.env.*
*.env

# OS
.DS_Store
Thumbs.db

# Documentation
*.md
!README.md
docs/

# Test
.nyc_output/
27 changes: 27 additions & 0 deletions reference-apps/rust/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Rust
target/
**/*.rs.bk
Cargo.lock

# IDE
.vscode/
.idea/
*.iml

# Git
.git/
.gitignore

# Environment
.env
.env.*
*.env

# OS
.DS_Store
Thumbs.db

# Documentation
*.md
!README.md
docs/
Loading
Loading