-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CodePipeline build step fails if app's Dockerfile is not in root #893
Comments
What is the exact contents of the buildspec dockerfile path? I have had app deploy fail when the manifest specifies |
in the scenario above it's "fe/Dockerfile", that's why the error is: |
I've been running into this issue since 0.0.7. I think has to with how it's trying 'cd' to a Dockerfile path that is malformed. Look for this text below: src/./SpatialWebInterfaceFlow
|
Fixes #893 Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
@msafder we released the fix in v0.0.9! :) https://github.com/aws/amazon-ecs-cli-v2/releases/tag/v0.0.9 |
Fixes aws#893 Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Description
I have a workspace structured as:
pipeline init
andpipeline update
creates the pipeline successfully, however thebuild
step in the pipeline fails:The issue appears to be because the
buildspec
expects the path in the manifest to be a directory where the Dockerfile is present, whereas instead the value in the manifest points to the Dockerfile path:fe/Dockerfile
instead offe
.The text was updated successfully, but these errors were encountered: