8049bfa91e
- Cleans up log messages in the client - Refactored the autoupdate bundle code into an own file - Added bulk creates for History in Postgresql. This is the only database system that supports returning all ids whan multiple elements are inserted. We can make usage out of it. - Added a `disable_history`, that is request-wide - Disabled history on poll vote requests - Removed unnecessary user ordering - Reduced the queries for creating motion vote objects by one - removed final_data: This was not prefetched. Using the normal data collection the data is prefetched - removed unnecessary user query if vore delegation is not used
32 lines
751 B
Docker
32 lines
751 B
Docker
FROM python:3.7-slim AS base
|
|
|
|
# Variables relevant for CMD
|
|
ENV DJANGO_SETTINGS_MODULE settings
|
|
ENV PYTHONPATH personal_data/var/
|
|
|
|
WORKDIR /app
|
|
RUN apt-get -y update && apt-get install --no-install-recommends -y \
|
|
postgresql-client \
|
|
wait-for-it \
|
|
gcc \
|
|
git \
|
|
vim \
|
|
libxml2-dev \
|
|
libxmlsec1-dev \
|
|
libxmlsec1-openssl \
|
|
pkg-config
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements /app/requirements
|
|
COPY requirements.txt /app/requirements.txt
|
|
|
|
RUN pip install -r requirements.txt -r requirements/saml.txt && \
|
|
rm -rf /root/.cache/pip
|
|
|
|
EXPOSE 8000
|
|
COPY docker/entrypoint-dev /usr/local/sbin/
|
|
COPY . .
|
|
ENTRYPOINT ["/usr/local/sbin/entrypoint-dev"]
|
|
CMD ["python", "-u", "manage.py", "runserver", "0.0.0.0:8000"]
|