ScholarShare / Dockerfile
anurag-deo's picture
Upload folder using huggingface_hub
7259a15 verified
raw
history blame contribute delete
481 Bytes
FROM python:3.10
# Update package list and install LaTeX
RUN apt-get update && apt-get install -y \
texlive-latex-base \
texlive-latex-extra \
texlive-fonts-recommended \
texlive-fonts-extra \
lmodern \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["panel", "serve", "app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*"]