-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(docker): Move to Alpine images for Dockerfile (#356)
* Get rid of .env varaiables * Add default vars for docker compose down * Get rid of debug * Create dependabot.yml * Deactivate test workflow * Update lint.yml * Rename regen references * Update Stage 1 build * Remove Cosmovisor stages * Remove unecessary Hadolint path * Move Dockerfile to top-level context * Update .Dockerignore * Change build folder * Remove unnecessary packages from Stage 1 * Update Makefile * Switched version tag to take any version, not just `v*` prefix * Changed ldflags to `cheqd-node` instead of `cheqd-noded` * Switch release dispatch guard * Dockerfile back in docker folder * Delete .Dockerignore * Honestly, changing a filename to lowercase should be easier * Update Dockerfile * Update Dockerfile * Update Dockerfile * Update Dockerfile * Delete cosmovisor.sh * Pick up Go version from go.mod * Moved unit tests to build job * Change to Docker Buildx * Disable release * Add dotenv linter * Update Makefile * Reinstate user permissions * Update docker-compose.env * Set latest recommended version * Set Docker image version * Update container.env * Added healthcheck * Entrypoint fix * Update Dockerfile * Change entrypoint copy order * Remove dockerignore for docker folder * Add protobuf generation to Docker job * Save Docker test image * Update test.yml * Reactivate test * Update Makefile * Change ldflag for name * Fixed incorrect folder move * Go mod tidy * Update dispatch.yml Co-authored-by: Ankur Banerjee <ankurdotb@users.noreply.github.com>
- Loading branch information
Showing
21 changed files
with
189 additions
and
712 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
# Exclude all Markdown files | ||
**/*.md | ||
|
||
# Skip build/test folders | ||
build-tools/ | ||
installer/ | ||
networks/ | ||
tests/ | ||
|
||
# Skip Git-related folders | ||
.github | ||
.git |
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,42 @@ | ||
################################# | ||
# GitHub Dependabot Config info # | ||
################################# | ||
|
||
version: 2 | ||
updates: | ||
|
||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
# Maintain dependencies for NPM | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
# Maintain dependencies for Docker | ||
- package-ecosystem: "docker" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
# Maintain dependencies for Golang | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
# Maintain dependencies for Terraform | ||
- package-ecosystem: "terraform" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
|
||
# Maintain dependencies for Python | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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
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
Oops, something went wrong.