From 7b3b26c9ad2e2f808858fbf45270c369ef08dbb5 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 21 Apr 2024 22:10:14 -1000 Subject: [PATCH] fix(build): :ambulance: Fix serve running on wrong path --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index baef9b3..6fd4146 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,5 +26,5 @@ LABEL org.opencontainers.image.licenses "AGPL-3.0" LABEL org.opencontainers.image.title "Lysand-FE" LABEL org.opencontainers.image.description "Frontend for the Lysand Project" -WORKDIR /app/server -CMD ["bunx", "serve", "public"] \ No newline at end of file +WORKDIR /app +CMD ["bunx", "serve", "public", "--no-compression"] \ No newline at end of file