forked from repo-mirrors/sqlfluff
* Add Dockerfile and Github Actions workflow for Official Docker image * Update Dockerfile Co-authored-by: Barry Hart <barrywhart@yahoo.com> * Update docker build comments * Fix spelling mistake * Official docker test (#2) * Refactor Dockerfile for better caching performance; add .dockerignore. * Implement layer caching in GHA. Co-authored-by: Chris Curro <git@curro.cc> * revert requirements.txt to be handled by #1956 * make docker image test consistent with suggested usage * Add README reference to Official SQLFluff Docker Image * Set separate end-user working directory for convenience * remove -t option in integration test * Add workflow_dispatch option incase we manually want to trigger docker build and push * Extract dependencies from setup.cfg Co-authored-by: Barry Hart <barrywhart@yahoo.com> Co-authored-by: Chris Curro <git@curro.cc>
55 lines
682 B
Plaintext
55 lines
682 B
Plaintext
# Ignore IDE files
|
|
.vscode
|
|
.idea
|
|
/.sqlfluff
|
|
**/.DS_Store
|
|
|
|
# Ignore Python cache and prebuilt things
|
|
.cache
|
|
__pycache__
|
|
*.egg-info
|
|
*.pyc
|
|
build
|
|
_build
|
|
dist
|
|
.pytest_cache
|
|
|
|
# Ignore the Environment
|
|
env
|
|
.tox
|
|
venv
|
|
.venv
|
|
.python-version
|
|
|
|
# Ignore coverage reports
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
htmlcov
|
|
*.cover
|
|
|
|
# Ignore test reports
|
|
.test-reports
|
|
test-reports
|
|
|
|
# Ignore root testing sql & python files
|
|
/test*.sql
|
|
/test*.py
|
|
/.hypothesis/
|
|
|
|
# Ignore dbt outputs from testing
|
|
/target
|
|
|
|
# Ignore conda environment.yml contributors might be using and direnv config
|
|
environment.yml
|
|
.envrc
|
|
**/*FIXED.sql
|
|
|
|
# Others
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
*.log
|
|
.git
|
|
.mypy_cache
|
|
.pytest_cache
|