devops
This commit is contained in:
26
Dockerfile
Normal file
26
Dockerfile
Normal file
@ -0,0 +1,26 @@
|
||||
# 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"]
|
Reference in New Issue
Block a user