Tourism_App / Dockerfile
Satyanjay's picture
Update Dockerfile
a296b22 verified
raw
history blame contribute delete
339 Bytes
# Base Python image
FROM python:3.10
# Set working directory
WORKDIR /app
# Copy all files to container
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose port for Streamlit
EXPOSE 7860
# Run Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]