From e3cb852c77eeecfba8e6c1f20bedba10571d29c0 Mon Sep 17 00:00:00 2001 From: MotorTruck1221 Date: Mon, 23 Dec 2024 01:35:02 -0700 Subject: [PATCH] Remove the stupid if statement --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9b09a82ff..9f4338f44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apt update RUN apt install -y python3 python3-pip libssl-dev build-essential python3-dev nodejs RUN cp -n config.example.toml config.toml RUN deno install --allow-scripts -RUN if [ -z "$SEO" ]; then deno task build; else deno task build:seo; fi +RUN deno task build RUN export TERM=xterm-256color ENV PORT="8000" VOLUME /app