From 00f4574cda8e60c4cb6d1bb1862c37f1c640467d Mon Sep 17 00:00:00 2001 From: trev Date: Thu, 13 Mar 2025 05:14:43 -0400 Subject: [PATCH] fix: docker use the correct cmd --- .dockerignore | 5 +---- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.dockerignore b/.dockerignore index 9084ebf..5554b36 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,10 +5,7 @@ build # Client /client/node_modules /client/.svelte-kit -/client/src/lib/services -/client/static/openapi # Server /server/client -/server/tmp -/server/internal/services \ No newline at end of file +/server/tmp \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 3158d12..76d0312 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,4 +25,4 @@ WORKDIR /app # Copy /nix/store COPY --from=builder /tmp/nix-store-closure /nix/store COPY --from=builder /tmp/build/result /app -CMD ["/app/bin/app"] \ No newline at end of file +CMD ["/app/bin/server"] \ No newline at end of file