setup timer for create database.

This commit is contained in:
iamBadgers
2025-06-02 20:45:25 -07:00
parent f6fcf82eae
commit 9801ba4ba6
7 changed files with 52 additions and 48 deletions

11
loader/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Setup the loader
FROM python:3.12 AS loader
COPY . /loader
WORKDIR /loader
RUN python -m pip install --upgrade pip
RUN pip install -r requirements.txt
ENV REPLAY_TIME=0
CMD ["sh", "-c", "python3 createrushdatabase.py -r $REPLAY_TIME"]