cal_heatmap/Dockerfile
remi cc9df870a1
Some checks failed
Build and Push Docker Image / build (push) Failing after 24m13s
Build and Push Docker Image / push_to_gitea (push) Has been skipped
devops
2025-01-02 16:51:50 -05:00

27 lines
702 B
Docker

# Use the official Python image as a base image
FROM python:3.9-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 ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]