From 3d2c2619147256897cdc319bcc22ff3fa945e438 Mon Sep 17 00:00:00 2001 From: DJ Gillespie Date: Mon, 2 Feb 2026 17:09:49 -0700 Subject: [PATCH] Switch to explicitly defined Dockerfile in captain-definition (Schema v1) to fix deployment error --- captain-definition | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/captain-definition b/captain-definition index 98c2747..2fff482 100644 --- a/captain-definition +++ b/captain-definition @@ -1,4 +1,7 @@ { - "schemaVersion": 2, - "templateId": "nginx" + "schemaVersion": 1, + "dockerfileLines": [ + "FROM nginx:alpine", + "COPY . /usr/share/nginx/html" + ] }