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 29 30 31 32 33
|
FROM python:3.12-slim-bookworm
ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
RUN apt-get update \
# dependencies for building Python packages
&& apt-get install -y build-essential \
&& apt-get install -y texlive \
&& apt-get install -y texlive-latex-extra \
&& apt-get install -y dvipng \
&& apt-get install -y python3-sphinx \
# Translations dependencies
&& apt-get install -y gettext \
# cleaning up unused files
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
&& rm -rf /var/lib/apt/lists/*
# # Requirements are installed here to ensure they will be cached.
COPY /requirements /requirements
# All imports needed for autodoc.
RUN pip install -r /requirements/docs.txt -r /requirements/default.txt
COPY . /celery
RUN pip install /celery
COPY docker/docs/start /start-docs
RUN sed -i 's/\r$//g' /start-docs
RUN chmod +x /start-docs
WORKDIR /docs
|