akarpov/compose/local/django/Dockerfile

95 lines
2.6 KiB
Docker
Raw Normal View History

ARG PYTHON_VERSION=3.11-slim
2022-11-23 11:41:43 +03:00
# define an alias for the specfic python version used in this file.
FROM python:${PYTHON_VERSION} as python
# Python build stage
FROM python as python-build-stage
ARG BUILD_ENVIRONMENT=local
# Python 'run' stage
FROM python as python-run-stage
ARG BUILD_ENVIRONMENT=local
ARG APP_HOME=/app
ENV PYTHONUNBUFFERED 1
ENV DRAWIO_VERSION 15.7.3
2022-11-23 11:41:43 +03:00
ENV PYTHONDONTWRITEBYTECODE 1
ENV BUILD_ENV ${BUILD_ENVIRONMENT}
2023-08-30 11:55:35 +03:00
ENV POETRY_VERSION 1.4.2
2022-11-23 11:41:43 +03:00
WORKDIR ${APP_HOME}
# Install required system dependencies
2023-05-09 23:46:44 +03:00
RUN apt-get update && \
apt-get install -y build-essential libpq-dev gettext libmagic-dev libjpeg-dev zlib1g-dev && \
# Dependencies for file preview generation
2023-12-27 02:16:08 +03:00
apt-get install -y webp git libimage-exiftool-perl libmagickwand-dev ffmpeg libgdal-dev && \
# ML dependencies \
# none for now
apt-get purge -y --auto-remove -o APT:AutoRemove:RecommendsImportant=false && \
rm -rf /var/lib/apt/lists/*
2024-02-01 17:04:11 +03:00
# Make ssh dir
RUN mkdir -p /root/.ssh/
# Create known_hosts and add github to it
RUN touch /root/.ssh/known_hosts
RUN ssh-keyscan -t rsa github.com >> /root/.ssh/known_hosts
2023-08-30 11:55:35 +03:00
RUN pip install "poetry==$POETRY_VERSION"
RUN python -m venv /venv
2023-08-30 11:55:35 +03:00
COPY pyproject.toml poetry.lock /app/
2023-09-08 12:46:09 +03:00
RUN poetry export --without-hashes -f requirements.txt | /venv/bin/pip install -r /dev/stdin
2023-08-30 11:55:35 +03:00
COPY . .
RUN poetry build && /venv/bin/pip install dist/*.whl
2023-11-08 18:28:27 +03:00
RUN /venv/bin/python -m nltk.downloader punkt stopwords wordnet
2022-12-21 00:50:36 +03:00
2022-11-23 11:41:43 +03:00
COPY ./compose/production/django/entrypoint /entrypoint
RUN sed -i 's/\r$//g' /entrypoint
RUN chmod +x /entrypoint
2023-12-28 02:28:47 +03:00
COPY ./compose/production/django/manage /manage
RUN sed -i 's/\r$//g' /manage
RUN chmod +x /manage
COPY ./compose/production/django/manage /manage.py
RUN sed -i 's/\r$//g' /manage
RUN chmod +x /manage
2022-11-23 11:41:43 +03:00
COPY ./compose/local/django/start /start
RUN sed -i 's/\r$//g' /start
RUN chmod +x /start
2023-08-30 11:46:53 +03:00
COPY ./compose/local/django/start-redirect /start-redirect
RUN sed -i 's/\r$//g' /start-redirect
RUN chmod +x /start-redirect
COPY ./compose/local/django/install_preview_dependencies /install_preview_dependencies
RUN sed -i 's/\r$//g' /install_preview_dependencies
RUN chmod +x /install_preview_dependencies
2022-11-23 11:41:43 +03:00
COPY ./compose/local/django/celery/worker/start /start-celeryworker
RUN sed -i 's/\r$//g' /start-celeryworker
RUN chmod +x /start-celeryworker
COPY ./compose/local/django/celery/beat/start /start-celerybeat
RUN sed -i 's/\r$//g' /start-celerybeat
RUN chmod +x /start-celerybeat
COPY ./compose/local/django/celery/flower/start /start-flower
RUN sed -i 's/\r$//g' /start-flower
RUN chmod +x /start-flower
# copy application code to WORKDIR
COPY . ${APP_HOME}
ENTRYPOINT ["/entrypoint"]