summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 4f2e42b..2b3d1e3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,5 +6,7 @@ RUN npm install -g pnpm
RUN pnpm install
COPY . /app/
RUN cp config/config.example.toml config/config.toml
-RUN pnpm run build
+# Always exit 0 here because TSC will fail while we're migrating to TypeScript but
+# not everything uses TypeScript
+RUN pnpm run build; exit 0
CMD pnpm run start