From 8400fc91a4ab8eabce100807a4097dd2397e4ecb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Nesveda?= Date: Wed, 14 Jun 2023 12:08:58 +0200 Subject: [PATCH] feat(consts): add `ACTOR_BUILD_ARGS` const --- packages/consts/src/consts.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/packages/consts/src/consts.ts b/packages/consts/src/consts.ts index eee8592ab..0d194eeba 100644 --- a/packages/consts/src/consts.ts +++ b/packages/consts/src/consts.ts @@ -303,6 +303,13 @@ export const INTEGER_ENV_VARS = [ ENV_VARS.CONTAINER_PORT, ] as const; +/** + * Dictionary of names of build-time variables passed to the Actor's Docker build process. + */ +export const ACTOR_BUILD_ARGS = { + ACTOR_PATH_IN_DOCKER_CONTEXT: 'ACTOR_PATH_IN_DOCKER_CONTEXT', +}; + /** * Default value for APIFY_CONTAINER_PORT used both locally and at Apify platform. */