Déploiement avec quelques corrections

This commit is contained in:
François Pelletier 2023-06-18 13:38:05 -04:00
parent 3425ce3b09
commit db4cf9b154
6 changed files with 45 additions and 22 deletions

View file

@ -11,8 +11,10 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the app files to the working directory
COPY app.py ./
COPY images/* ./images/
COPY logos/* ./logos/
COPY donnees/*.json ./donnees/
COPY app.py ./
# Expose the port that the app will run on
EXPOSE 8501