Compare commits

...

2 Commits

Author SHA1 Message Date
56f275cdb7 Merge branch 'main' of https://git.rehounou.ca/remi/cal_heatmap
Some checks failed
Build and Push Docker Image / build (push) Successful in 2m36s
Build and Push Docker Image / push_to_gitea (push) Failing after 54s
2025-01-03 11:44:39 -05:00
27973ac1a0 fix pip chill issue 2025-01-03 11:43:14 -05:00

View File

@ -11,7 +11,7 @@ RUN pip install --no-cache-dir pip-chill
COPY . /app
# Generate requirements.txt with pip-chill
RUN pip-chill > requirements.txt
#RUN pip-chill > requirements.txt
# Install the required packages based on the newly created requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
@ -23,4 +23,4 @@ RUN mkdir /config
EXPOSE 8501
# Command to run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]
CMD ["python","-m","streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]