You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
938 B
Docker
28 lines
938 B
Docker
FROM python:3.9-bookworm
|
|
|
|
# install additional dependencies
|
|
RUN apt-get update && apt-get install -y gettext texlive texlive-fonts-extra pandoc
|
|
|
|
# create user
|
|
RUN groupadd -g 501 app && useradd -g 501 -u 501 -m -d /app app
|
|
|
|
# create static directory and set permissions, when doing this before mounting a named volume
|
|
# in docker-compose.yaml, the permissions are inherited during the mount.
|
|
RUN mkdir -p /var/www/jdav_web/static && chown -R app:app /var/www/jdav_web/static
|
|
|
|
# create static directory and set permissions, when doing this before mounting a named volume
|
|
# in docker-compose.yaml, the permissions are inherited during the mount.
|
|
RUN mkdir -p /tmp/uwsgi && chown -R app:app /tmp/uwsgi
|
|
|
|
WORKDIR /app
|
|
USER app
|
|
|
|
# add .local/bin to PATH
|
|
ENV PATH="/app/.local/bin:$PATH"
|
|
|
|
# install requirements
|
|
COPY --chown=app:app ./requirements.txt /app/requirements.txt
|
|
RUN pip install uwsgi -r requirements.txt
|
|
|
|
COPY --chown=app:app . /app
|