fix: aws docker file is now in different place (#6706)

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
yihong 2025-02-19 22:22:58 +08:00 committed by GitHub
commit 3b38c2efb7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 90 additions and 68 deletions

View file

@ -19,7 +19,7 @@ export class EcrRepository extends Construct {
super(scope, id)
const imagePlatform = props.arch == ecs.CpuArchitecture.ARM64 ? Platform.LINUX_ARM64 : Platform.LINUX_AMD64
const backendPath = path.join(__dirname, "../../../../../", "langflow")
const backendPath = path.join(__dirname, "../../../../", "docker")
const excludeDir = ['node_modules','.git', 'cdk.out']
const LifecycleRule = {
tagStatus: ecr.TagStatus.ANY,