11 lines
239 B
Docker
11 lines
239 B
Docker
# 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"] |