File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ assets/fontawesome
66/index.html
77/about
88/about.html
9- / * .sh
9+
1010/blocked /index.html
1111lighttpd-dev.conf
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## [ Unreleased]
9+
10+ ### Changed
11+
12+ - Footer position fixed
13+ - About page background color
14+ - Updated dependencies
15+
816## [ 1.6.2] - 2025-03-25
917
1018### Fixed
Original file line number Diff line number Diff line change 1- FROM alpine:3.19
1+ FROM alpine:3.22
22LABEL org.opencontainers.image.source=https://github.com/offspot/dashboard
33
44RUN \
55 apk add --no-cache curl dumb-init yaml python3 lighttpd \
66 # FontAwesome font
7- && curl -L -O https://use.fontawesome.com/releases/v6.5.1 /fontawesome-free-6.5.1 -web.zip \
8- && unzip -o fontawesome-free-6.5.1 -web.zip \
9- fontawesome-free-6.5.1 -web/css/* \
10- fontawesome-free-6.5.1 -web/webfonts/* \
7+ && curl -L -O https://use.fontawesome.com/releases/v7.1.0 /fontawesome-free-7.1.0 -web.zip \
8+ && unzip -o fontawesome-free-7.1.0 -web.zip \
9+ fontawesome-free-7.1.0 -web/css/* \
10+ fontawesome-free-7.1.0 -web/webfonts/* \
1111 -d /var/www/assets/ \
12- && mv /var/www/assets/fontawesome-free-6.5.1 -web /var/www/assets/fontawesome \
13- && rm -f fontawesome-free-6.5.1 -web.zip \
12+ && mv /var/www/assets/fontawesome-free-7.1.0 -web /var/www/assets/fontawesome \
13+ && rm -f fontawesome-free-7.1.0 -web.zip \
1414 # python dependencies
1515 && python3 -m venv /usr/local/bin/gen-home_env \
1616 && /usr/local/bin/gen-home_env/bin/pip3 install --no-cache-dir -U pip \
1717 && /usr/local/bin/gen-home_env/bin/pip3 install \
1818 --no-cache-dir \
19- Jinja2==3.1.2 PyYAML==6.0.1 humanfriendly==10.0 libzim==3.4 .0 pycountry==23.12.11 \
19+ Jinja2==3.1.6 PyYAML==6.0.3 humanfriendly==10.0 libzim==3.8 .0 pycountry==24.6.1 \
2020 # install tailwind CSS cli
2121 && curl -L -o /usr/local/bin/tailwindcss https://github.com/tailwindlabs/tailwindcss/releases/download/v3.4.17/tailwindcss-linux-arm64 \
2222 && chmod +x /usr/local/bin/tailwindcss \
Original file line number Diff line number Diff line change 44VENV=/usr/local/bin/gen-home_env
55
66# refresh ZIM packages collection (maybe)
7- $VENV /bin/python3 $VENV /lib/refresh-zims.cpython-311 .pyc
7+ $VENV /bin/python3 $VENV /lib/refresh-zims.cpython-312 .pyc
88
99# generate homepage from collection
10- $VENV /bin/python3 $VENV /lib/gen-home.cpython-311 .pyc
10+ $VENV /bin/python3 $VENV /lib/gen-home.cpython-312 .pyc
1111
1212touch /tmp/.ready
1313
You can’t perform that action at this time.
0 commit comments