-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PORT-5453 Create centralized dockerfile (#268)
- Loading branch information
1 parent
c5e6f4d
commit 29c1d18
Showing
38 changed files
with
145 additions
and
1,342 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Added a way to create the integration without the Dockerfile and .dockerignore to use the global Docker files when scaffolding a new integration. | ||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
|
||
# Git | ||
**/.git | ||
**/.gitignore | ||
**/.gitattributes | ||
|
||
|
||
# CI | ||
**/.codeclimate.yml | ||
**/.travis.yml | ||
**/.taskcluster.yml | ||
|
||
# Docker | ||
**/docker-compose.yml | ||
**/Dockerfile | ||
**/.docker | ||
**/.dockerignore | ||
|
||
# Byte-compiled / optimized / DLL files | ||
**/__pycache__/ | ||
**/*.py[cod] | ||
|
||
# C extensions | ||
**/*.so | ||
|
||
# Distribution / packaging | ||
**/.Python | ||
**/env/ | ||
**/build/ | ||
**/develop-eggs/ | ||
**/dist/ | ||
**/downloads/ | ||
**/eggs/ | ||
**/lib/ | ||
**/lib64/ | ||
**/parts/ | ||
**/sdist/ | ||
**/var/ | ||
**/*.egg-info/ | ||
**/.installed.cfg | ||
**/*.egg | ||
|
||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
**/*.manifest | ||
**/*.spec | ||
|
||
# Installer logs | ||
**/pip-log.txt | ||
**/pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
**/htmlcov/ | ||
**/.tox/ | ||
**/.coverage | ||
**/.cache | ||
**/nosetests.xml | ||
**/coverage.xml | ||
|
||
# Translations | ||
**/*.mo | ||
**/*.pot | ||
|
||
# Django stuff: | ||
**/*.log | ||
|
||
# Sphinx documentation | ||
**/docs/_build/ | ||
|
||
# PyBuilder | ||
**/target/ | ||
|
||
# Virtual environment | ||
**/.env | ||
**/.venv/ | ||
**/venv/ | ||
|
||
# PyCharm | ||
**/.idea | ||
|
||
# Python mode for VIM | ||
**/.ropeproject | ||
|
||
# Vim swap files | ||
**/*.swp | ||
|
||
# VS Code | ||
**/.vscode/ | ||
|
||
**/*.md | ||
**/.ruff_cache | ||
**/cahangelog | ||
**/tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
if test -e /usr/local/share/ca-certificates/cert.crt; then | ||
update-ca-certificates | ||
fi | ||
|
||
ocean sail |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.