refactoring pour que l'application soit plus facile à entretenir

This commit is contained in:
François Pelletier 2024-08-24 12:43:35 -04:00
parent e8b82a1f3d
commit a50bf9e598
10 changed files with 239 additions and 197 deletions

View file

@ -9,7 +9,7 @@ COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy the app's code
COPY main.py .
COPY *.py .
# Set the entrypoint to run the app
ENTRYPOINT [ "streamlit", "run" ]