feat: OPI-1597 Create CI build for activepieces#2
Merged
Conversation
feat: update configuration and Docker setup for improved deployment - Added environment variables to .env.example for better configuration management. - Enhanced Dockerfile with multi-stage builds for optimized image size and build efficiency. - Introduced Jenkinsfile for CI/CD pipeline integration. - Updated docker-compose.oro.yml to streamline service definitions and health checks. - Added healthcheck script for better container health monitoring. - Updated bun.lock to include new dependencies for the orocommerce piece. - Created docker-bake.hcl for build configuration management.
x86demon
requested changes
Jun 8, 2026
…tion feat(docker): modify Dockerfile.oro to allow bun to update lockfile fix(bun.lock): remove orocommerce package references fix(docker-compose): change postgres image to official postgres:18
83534b3
into
poc/orocommerce_prefixed-path-install
4 checks passed
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a major refactor of the Docker build, deployment, and environment configuration for the project, with a focus on improved multi-stage Docker builds, more robust and portable Docker Compose setup, and the introduction of CI/CD automation via Jenkins. The changes modernize and streamline the build and deployment process, enhance container health monitoring, and improve environment variable management.
Container build and deployment pipeline modernization:
Dockerfile.oroto use a multi-stage build with clearer separation of concerns (base, build, dependencies, production, runtime), optimized for smaller image size, faster builds, and better security. Switched to usingbunand system package managers for Node.js/npm, and improved native dependency handling. [1] [2] [3]Jenkinsfile) for automated building and pushing of Docker images, including registry authentication and buildx support for multi-platform builds.docker-bake.hclfile for reproducible and parameterized Docker image builds, supporting consistent tagging and labeling.Docker Compose and environment improvements:
docker-compose.oro.ymlto use more portable image references, dynamic environment variables, improved healthchecks, and explicit volume mounts. Added apostgresservice with healthcheck, updated Redis image, and ensured app/worker dependencies are health-aware..env.examplewith sane defaults for critical variables, including database and Redis settings, and improved documentation for new settings.Container health and operability:
healthcheckscript for app and worker containers, using curl to verify service endpoints, and integrated it into Docker Compose and Dockerfile for reliable container health reporting. [1] [2]These changes collectively make local development, CI/CD, and production deployments more reliable, maintainable, and secure.