Files
RushStatistics/loader/Dockerfile
2025-06-02 21:05:59 -07:00

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"]