move the session secret to GH secret

This commit is contained in:
Chris Kruining 2025-03-05 16:04:01 +01:00
parent a7668a6c55
commit 0f57519291
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
2 changed files with 2 additions and 1 deletions

View file

@ -13,7 +13,7 @@ RUN cd /temp/prod && bun install --frozen-lockfile --production
FROM base AS prerelease
COPY --from=install /temp/dev/node_modules node_modules
COPY . .
RUN echo "SESSION_SECRET=$(head -c 64 /dev/random | base64)" > .env
# RUN echo "SESSION_SECRET=$(head -c 64 /dev/random | base64)" > .env
ENV NODE_ENV=production
ENV SERVER_PRESET=bun