// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.Deploy.Constants { internal class Docker { /// /// Name of the default Dockerfile that the deployment tool attempts to detect in the project directory /// public static readonly string DefaultDockerfileName = "Dockerfile"; /// /// Id for the Docker Execution Directory recipe option /// public const string DockerExecutionDirectoryOptionId = "DockerExecutionDirectory"; /// /// Id for the Dockerfile Path recipe option /// public const string DockerfileOptionId = "DockerfilePath"; /// /// Id for the Docker Build Args recipe option /// public const string DockerBuildArgsOptionId = "DockerBuildArgs"; /// /// Id for the ECR Repository Name recipe option /// public const string ECRRepositoryNameOptionId = "ECRRepositoryName"; /// /// Id for the Docker Image Tag recipe option /// public const string ImageTagOptionId = "ImageTag"; } }