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

[CI] Use bower.

parent 5a7f0b51
No related branches found
No related tags found
No related merge requests found
......@@ -21,18 +21,19 @@ RUN apt-get update && \
apt-get install -y --no-install-recommends \
build-essential \
gettext \
libjs-bootstrap4 \
libpq5 \
libpq-dev \
libssl-dev \
netcat-openbsd
netcat-openbsd \
npm
# Install core dependnecies
WORKDIR /usr/src/app
COPY poetry.lock pyproject.toml ./
RUN pip install "poetry==$POETRY_VERSION"; \
poetry export -f requirements.txt | pip install -r /dev/stdin; \
pip install gunicorn
pip install gunicorn; \
npm install -g bower
# Install core
COPY biscuit ./biscuit/
......@@ -42,20 +43,24 @@ RUN mkdir -p /var/lib/biscuit/media /var/lib/biscuit/static /var/lib/biscuit/bac
# Build messages and assets
RUN python manage.py compilemessages; \
python manage.py bower install; \
python manage.py collectstatic --no-input --clear
# Clean up build dependencies
RUN apt-get remove --purge -y \
RUN npm ls -gp --depth=0 | awk -F/ '/node_modules/ && !/\/npm$/ {print $NF}' | xargs npm -g rm; \
apt-get remove --purge -y \
build-essential \
gettext \
libpq-dev \
libssl-dev \
npm \
python3-dev; \
apt-get autoremove --purge -y; \
apt-get clean -y; \
pip uninstall -y poetry; \
rm -f /var/lib/apt/lists/*_*; \
rm -rf /root/.cache
rm -rf /root/.cache; \
rm -rf biscuit/bower
# Declare a persistent volume for all data
VOLUME /var/lib/biscuit
......
......@@ -3,7 +3,4 @@ FROM nginx
RUN rm /etc/nginx/conf.d/default.conf
COPY nginx.conf /etc/nginx/conf.d
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y libjs-bootstrap4 fonts-font-awesome libjs-jquery libjs-popper.js libjs-jquery-datatables
RUN mkdir /var/lib/biscuit
......@@ -19,8 +19,4 @@ server {
location /static/ {
alias /var/lib/biscuit/static/;
}
location /javascript/ {
alias /usr/share/javascript/;
}
}
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