Revert "Fix a docker rebuild issue (#88)"

This reverts commit bc145f4caf.
This commit is contained in:
Jon Staab
2026-03-13 12:50:33 -07:00
committed by hodlbod
parent 2fa0f29fc6
commit d410a6a043
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -22,7 +22,6 @@ ENV VITE_BUILD_HASH=${VITE_BUILD_HASH}
ENV NODE_OPTIONS=--max_old_space_size=16384
RUN pnpm run build
# Stage 2: Runtime
FROM node:20-alpine
WORKDIR /app
+2 -2
View File
@@ -5,8 +5,8 @@ temp_env=$(declare -p -x)
if [ -f .env.template ]; then
source .env.template
fi
if [ -f .env ]; then
source .env
if [ -f .env.local ]; then
source .env.local
fi
# Avoid overwriting env vars provided directly