add config volume

This commit is contained in:
2025-01-02 01:22:57 -05:00
parent 4568d21ff9
commit 833091dd3f

View File

@ -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