Compare commits

...

6 Commits

Author SHA1 Message Date
Levente Orban
fa9a79192c Revert "fix: insecure randomness" 2025-10-28 07:57:10 +01:00
Levente Orban
7275084ab9 fix: insecure randomness 2025-10-28 07:48:17 +01:00
Levente Orban
02975a0abd fix: insecure randomness
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2025-10-28 07:46:02 +01:00
Levente Orban
aebe477f90 fix: add missing envs 2025-10-27 21:57:20 +01:00
Levente Orban
325237d414 fix: add missing envs 2025-10-27 21:46:58 +01:00
Levente Orban
24e9d8b626 feat: add pino logger for serverside 2025-10-27 17:18:27 +01:00

View File

@@ -7,6 +7,12 @@ RUN npm ci
ARG PUBLIC_LANDING_INFO
ENV PUBLIC_LANDING_INFO=$PUBLIC_LANDING_INFO
ARG LOG_PRETTY
ENV LOG_PRETTY=$LOG_PRETTY
ARG LOG_LEVEL
ENV LOG_LEVEL=$LOG_LEVEL
COPY . .
RUN npm run build