e3d718cad0
Applause button in Jitsi Bar, Add Applause Service, Add Applause Display component, Add Config varriables, Integrate applause display component in Jitsi bar, Integrate custom vertical progress bar as own component, - vertical and more customizable than the mat-progress-bar - includes an optional end icon - animated and themed Add custom clapping icon applause particles using tsparticles custom particle component dynamic add and remove functions to alter particles in runtime Set own particle shape Use smooth emitter for clean particle spawning
31 lines
748 B
Docker
31 lines
748 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"]
|