mirror of
https://github.com/mendableai/firecrawl.git
synced 2024-11-16 11:42:24 +08:00
39 lines
1.1 KiB
Docker
39 lines
1.1 KiB
Docker
FROM python:3.11-slim
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
ENV PYTHONDONTWRITEBYTECODE=1
|
|
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
gcc \
|
|
libstdc++6
|
|
|
|
WORKDIR /app
|
|
|
|
# Install Python dependencies
|
|
COPY requirements.txt ./
|
|
|
|
# Remove py which is pulled in by retry, py is not needed and is a CVE
|
|
RUN pip install --no-cache-dir --upgrade -r requirements.txt && \
|
|
pip uninstall -y py && \
|
|
playwright install chromium && playwright install-deps chromium && \
|
|
ln -s /usr/local/bin/supervisord /usr/bin/supervisord
|
|
|
|
# Cleanup for CVEs and size reduction
|
|
# https://github.com/tornadoweb/tornado/issues/3107
|
|
# xserver-common and xvfb included by playwright installation but not needed after
|
|
# perl-base is part of the base Python Debian image but not needed for Danswer functionality
|
|
# perl-base could only be removed with --allow-remove-essential
|
|
|
|
|
|
|
|
|
|
|
|
COPY . ./
|
|
|
|
EXPOSE $PORT
|
|
# run fast api hypercorn
|
|
CMD hypercorn main:app --bind [::]:$PORT
|
|
# CMD ["hypercorn", "main:app", "--bind", "[::]:$PORT"]
|
|
# CMD ["sh", "-c", "uvicorn main:app --host 0.0.0.0 --port $PORT"]
|