This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
fix: fix docker build #4461
Merged
Merged
fix: fix docker build #4461
Conversation
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
when NODE_ENV is production, yarn will not install dev dependencies. We need those to build extensions.
Contributor
Author
|
@cdonke Can you take a look at this PR and let me know if there are any optimizations that can be made? |
Contributor
|
@a-b-r-o-w-n Sure! right now! |
Contributor
Contributor
Author
|
@cdonke thanks for the review. The dependency that is complaining about the .git directory is when developing locally. It runs As for the |
Contributor
|
@a-b-r-o-w-n Makes sense... So I don't see any more changes... besides removing a redundant WORKDIR at line 35... but that is not affecting anything... |
Merged
lei9444
pushed a commit
to lei9444/BotFramework-Composer-1
that referenced
this pull request
Jun 15, 2021
* always compile extensions if git not present * compile extension if main module is missing * do not print git errors * fix docker builds * re-enable docker on CI * load image into docker after building * report on errors and fail script * remove buildx * force extensions to install all dependencies when NODE_ENV is production, yarn will not install dev dependencies. We need those to build extensions. * revert not using buildx * start up docker in background * update code scan action to run on push to main
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.

Description
Updates docker build after moving extensions directory outside
./Composer. Also enables docker builds in CI again.Task Item
fixes #4435