alpha-predict / Dockerfile
DevKX's picture
Upload Dockerfile
e96834f verified
# Use an official Python runtime as a parent image
FROM python:3.10-slim
# Set the working directory in the container
WORKDIR /app
# Copy the requirements file into the container
COPY requirements.txt .
# Install your dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of your app's code
COPY . .
# Expose the port Streamlit runs on
EXPOSE 8501
# Command to run your app
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0"]