Skip to content

Commit 1764a3b

Browse files
committed
feat(sinusbot): update packages
1 parent 5036fe8 commit 1764a3b

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/apps.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
uptime_kuma_2_changed:
3939
- 'apps/uptime-kuma-2/**'
4040
- 'scripts/apps/uptime-kuma-2/**'
41+
sinusbot_changed:
42+
- 'apps/sinusbot/**'
4143
base_changed:
4244
- 'base/**'
4345
- 'scripts/base/ampstart.sh'
@@ -48,7 +50,7 @@ jobs:
4850
set -euo pipefail
4951
# Default matrix when not a push: build all apps
5052
if [ "${{ github.event_name }}" != "push" ]; then
51-
echo 'apps_json=["postgresql","uptime-kuma-2"]' >> "$GITHUB_OUTPUT"
53+
echo 'apps_json=["postgresql","uptime-kuma-2","sinusbot"]' >> "$GITHUB_OUTPUT"
5254
exit 0
5355
fi
5456
@@ -61,6 +63,7 @@ jobs:
6163
apps=()
6264
if [ "${{ steps.filter.outputs.postgresql_changed || 'false' }}" = "true" ]; then apps+=('"postgresql"'); fi
6365
if [ "${{ steps.filter.outputs.uptime_kuma_2_changed || 'false' }}" = "true" ]; then apps+=('"uptime-kuma-2"'); fi
66+
if [ "${{ steps.filter.outputs.sinusbot_changed || 'false' }}" = "true" ]; then apps+=('"sinusbot"'); fi
6467
6568
if [ "${#apps[@]}" -eq 0 ]; then
6669
echo 'apps_json=[]' >> "$GITHUB_OUTPUT"

apps/sinusbot/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ ENV DEBIAN_FRONTEND="noninteractive"
1111
RUN set -eux; \
1212
apt-get update; \
1313
apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
14-
x11vnc xvfb libxcursor1 ca-certificates curl bzip2 libnss3 libegl1 x11-xkb-utils libasound2t64 libpci3 libxslt1.1 libxkbcommon0 libxss1 libxcomposite1 libglib2.0-0t64 less; \
14+
ca-certificates bzip2 unzip curl python3 procps x11vnc xvfb libxcursor1 libnss3 \
15+
libegl1 libasound2t64 libglib2.0-0t64 libxcomposite-dev less jq libevent-2.1-7t64 \
16+
libxcb-xinerama0 liblcms2-2 libatomic1 libxcb-icccm4 libxcb-keysyms1 libxcb-randr0 \
17+
libxcb-render-util0 libxcb-shape0 libxcb-xkb1 libxkbcommon0 libxkbcommon-x11-0 libpci3 libxslt1.1; \
1518
apt-get clean; \
1619
rm -rf /var/lib/apt/lists/*

0 commit comments

Comments
 (0)