From 833091dd3fa1e5f91449d758b36513d7cfecae60 Mon Sep 17 00:00:00 2001 From: remi Date: Thu, 2 Jan 2025 01:22:57 -0500 Subject: [PATCH] add config volume --- DOCKERFILE | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DOCKERFILE b/DOCKERFILE index e5f7f72..4c36802 100644 --- a/DOCKERFILE +++ b/DOCKERFILE @@ -13,6 +13,9 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application code into the container COPY . /app +# Create a directory for the configuration files +RUN mkdir /config + # Expose the port that Streamlit will run on EXPOSE 8501