Skip to content

Commit

Permalink
fix: dirname
Browse files Browse the repository at this point in the history
  • Loading branch information
mmanciop committed Oct 20, 2023
1 parent ec89a8d commit 4696fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/otelbin-validation/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export class OTelBinValidationStack extends Stack {
const releaseLambda = new DockerImageFunction(this, `${distributionName}-${release.version}`, {
description: `Configuration validation for the the '${distributionName}' distribution, version '${release.version}'`,
architecture: Architecture.X86_64,
code: DockerImageCode.fromImageAsset(join(dirname(dirname(__dirname)), 'otelcol-validator-image'), {
code: DockerImageCode.fromImageAsset(join(dirname(dirname(__dirname)), 'otelcol-validation-image'), {
platform: Platform.LINUX_AMD64,
buildArgs: {
DISTRO_NAME: distributionName,
Expand Down

0 comments on commit 4696fdd

Please sign in to comment.