feat(ui): ondersteuning Containerfile zichtbaar in build UI

- Label aangepast naar 'Dockerfile/Containerfile'
- Picker-titel aangepast naar 'Kies Dockerfile/Containerfile'
- Default waarde van buildDockerfile input leeggemaakt
- Validatiemelding aangepast naar 'Dockerfile/Containerfile'

Geen backend- of API-wijzigingen; dockerfile blijft leidend veld.
This commit is contained in:
kodi
2026-03-01 11:09:18 +01:00
parent 417d08b162
commit 3a80ba09af
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -142,7 +142,7 @@ async function buildImage() {
const outputBox = document.getElementById("buildOutput");
if (!context || !dockerfile || !tag) {
alert("Vul context_dir, dockerfile en tag in.");
alert("Vul context_dir, Dockerfile/Containerfile en tag in.");
return;
}
@@ -400,4 +400,4 @@ function updateSortIndicators() {
if (el) {
el.textContent = imagesSort.dir === "asc" ? "▲" : "▼";
}
}
}