Add volume support to allow loader to pass data to server.

This commit is contained in:
iamBadgers
2025-06-03 01:57:06 -07:00
parent 9801ba4ba6
commit 62ed1badc2
5 changed files with 19 additions and 6 deletions

View File

@@ -1,6 +1,10 @@
# Setup the loader
FROM python:3.12 AS loader
COPY . /loader
VOLUME /loader/data
WORKDIR /loader
RUN python -m pip install --upgrade pip
RUN pip install -r requirements.txt