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 mplorentz
parent 2e1148e514
commit 6fd2acc332
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 ENV NODE_OPTIONS=--max_old_space_size=16384
RUN pnpm run build RUN pnpm run build
# Stage 2: Runtime
FROM node:20-alpine FROM node:20-alpine
WORKDIR /app WORKDIR /app
+2 -2
View File
@@ -5,8 +5,8 @@ temp_env=$(declare -p -x)
if [ -f .env.template ]; then if [ -f .env.template ]; then
source .env.template source .env.template
fi fi
if [ -f .env ]; then if [ -f .env.local ]; then
source .env source .env.local
fi fi
# Avoid overwriting env vars provided directly # Avoid overwriting env vars provided directly