@@ -791,7 +791,7 @@ const ProvisionerSettings: React.FC<Props> = (props) => {
label="CIDR range for Kubernetes internal services"
placeholder="ex: 172.20.0.0/16"
/>
- {currentProject && false && (
+ {currentProject && (
<>
<Spacer y={1} />
<Checkbox
@@ -72,7 +72,7 @@ const DockerfileSettings: React.FC<Props> = ({
repoName={repoName}
branch={branch}
onFileSelect={(path: string) => onChange(`./${path}`)}
- isFileSelectable={(path: string) => path.includes("Dockerfile")}
+ isFileSelectable={(path: string) => path.toLowerCase().includes("dockerfile")}
headerText={"Select your Dockerfile:"}
</div>}