Skip to content
Snippets Groups Projects
Verified Commit 5ec792e4 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

[Docker] Move static files to /usr/share

Containers cannot update shared volumes from new image versions
parent 3e2a5977
No related branches found
No related tags found
No related merge requests found
Pipeline #801 passed with warnings
......@@ -8,7 +8,7 @@ ENV PIP_DISABLE_PIP_VERSION_CHECK 1
ENV PIP_NO_CACHE_DIR 1
# Configure app settings for build and runtime
ENV ALEKSIS_static__root /var/lib/aleksis/static
ENV ALEKSIS_static__root /usr/share/aleksis/static
ENV ALEKSIS_media__root /var/lib/aleksis/media
ENV ALEKSIS_backup__location /var/lib/aleksis/backups
......@@ -30,7 +30,7 @@ WORKDIR /usr/src/app
COPY LICENCE.rst README.rst manage.py poetry.lock pyproject.toml ./
COPY aleksis ./aleksis/
RUN set -e; \
mkdir -p /var/lib/aleksis/media /var/lib/aleksis/static /var/lib/aleksis/backups; \
mkdir -p /var/lib/aleksis/media /usr/share/aleksis/static /var/lib/aleksis/backups; \
eatmydata pip install poetry; \
poetry config virtualenvs.create false; \
eatmydata poetry install; \
......@@ -48,7 +48,8 @@ RUN set -e; \
# Build messages and assets
RUN eatmydata python manage.py compilemessages && \
eatmydata python manage.py yarn install \
eatmydata python manage.py yarn install && \
eatmydata python manage.py collectstatic --no-input --clear
# Clean up build dependencies
RUN set -e; \
......
......@@ -17,7 +17,6 @@ while ! nc -z $ALEKSIS_database__host $ALEKSIS_database__port; do
sleep 0.1
done
python manage.py collectstatic --no-input --clear
python manage.py migrate
if [[ -n "$@" ]]; then
......
......@@ -15,8 +15,4 @@ server {
location /media/ {
alias /var/lib/aleksis/media/;
}
location /static/ {
alias /var/lib/aleksis/static/;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment