relog-web: Make time limit configurable

This commit is contained in:
2022-09-08 11:35:11 -05:00
parent bae39a4ff4
commit d84b74a8a7
3 changed files with 14 additions and 3 deletions

View File

@@ -1,5 +1,7 @@
FROM julia:1.7-buster
ENV RELOG_TIME_LIMIT_SEC=3600
# Install Node.js & zip
RUN apt-get update -yq && \
apt-get -yq install curl gnupg ca-certificates && \
@@ -24,4 +26,4 @@ RUN julia --project=/app -e 'using Pkg; Pkg.precompile()'
RUN cd /app/relog-web && npm run build
WORKDIR /app
CMD julia --project=/app -e 'import RELOG; RELOG.web("0.0.0.0")'
CMD julia --project=/app -e 'import RELOG; RELOG.web("0.0.0.0")'