Skip to content

Commit ab9c1b2

Browse files
committed
Update source image and dependencies
1 parent 1d3943d commit ab9c1b2

4 files changed

Lines changed: 19 additions & 11 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ assets/fontawesome
66
/index.html
77
/about
88
/about.html
9-
/*.sh
9+
1010
/blocked/index.html
1111
lighttpd-dev.conf

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and 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

Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
FROM alpine:3.19
1+
FROM alpine:3.22
22
LABEL org.opencontainers.image.source=https://github.com/offspot/dashboard
33

44
RUN \
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 \

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ set -e
44
VENV=/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

1212
touch /tmp/.ready
1313

0 commit comments

Comments
 (0)