From 31ff2fa87f9639c8590ceb79515c56fcf87c3ae8 Mon Sep 17 00:00:00 2001 From: Ajax Davis Date: Fri, 5 Dec 2025 01:10:42 +1000 Subject: [PATCH] fix: remove nonexistent deno.json from Dockerfile --- apps/railway-executor/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/railway-executor/Dockerfile b/apps/railway-executor/Dockerfile index c36ea19..101a56e 100644 --- a/apps/railway-executor/Dockerfile +++ b/apps/railway-executor/Dockerfile @@ -7,9 +7,8 @@ WORKDIR /app # Set Deno cache directory to use mounted volume ENV DENO_DIR=/data -# Copy files +# Copy server file COPY server.ts . -COPY deno.json . # Expose port (Railway will set PORT env var) EXPOSE 3002