JobPulse-Bouncer / Dockerfile
learnopolis's picture
Update Dockerfile
ba84dcb verified
Raw
History Blame Contribute Delete
392 Bytes
FROM python:3.9
# --- ADD THIS NEW LINE RIGHT HERE ---
RUN apt-get update && apt-get install -y texlive-latex-base texlive-fonts-recommended texlive-fonts-extra texlive-latex-extra
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]