Spaces:
Running
Running
File size: 580 Bytes
bfc2bc2 8022f95 bfc2bc2 8022f95 bfc2bc2 8022f95 bfc2bc2 8022f95 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
FROM python:3.9-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
curl \
software-properties-common \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements and install Python dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
# Copy the app
COPY . .
# Expose port 7860 for Streamlit
EXPOSE 7860
# Set environment variables
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
# Command to run the Streamlit app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
|