cal_heatmap/Dockerfile
remi 6072f79697
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m26s
python version avoid vulnerabilities
2025-02-03 03:22:55 +00:00

27 lines
715 B
Docker

# Use the official Python image as a base image
FROM python:3-slim
# Set the working directory in the container
WORKDIR /app
# Install pip-chill
RUN pip install --no-cache-dir pip-chill
# Copy the application code into the container
COPY . /app
# Generate requirements.txt with pip-chill
#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
# Create a directory for the configuration files
RUN mkdir /config
# Expose the port that Streamlit will run on
EXPOSE 8501
# Command to run the Streamlit app
CMD ["python","-m","streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]