Implement config storage

This commit is contained in:
Logan Cusano
2025-05-11 20:36:31 -04:00
parent 52965f2a30
commit f17f7fc36a
5 changed files with 154 additions and 16 deletions

View File

@@ -4,6 +4,9 @@ FROM python:3.13-slim
# Set the working directory in the container
WORKDIR /app
# Create the data dir (this should be a volume on the local machine to store data)
RUN mkdir -p data
# Copy the requirements file into the container
COPY requirements.txt .