Skip to content

Commit

Permalink
🔨 Merge changes and add missing build image
Browse files Browse the repository at this point in the history
  • Loading branch information
timmo001 committed Mar 19, 2019
2 parents 1e23014 + bd099a5 commit e57c2d4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ A self-hosted web IRC client.
## About

A self-hosted web IRC client that uses a modern and sleek interface with
support for theming, push notifications, link previews, file uploads and
more. Fully cross-platform and mobile friendly.
support for theming, push notifications, link previews, file uploads and
more. Fully cross-platform and mobile friendly.

![Screenshot][screenshot]

Expand Down
18 changes: 15 additions & 3 deletions thelounge/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,25 @@ FROM ${BUILD_FROM}
# Install packages
# hadolint ignore=DL3003
RUN \
apk add --no-cache \
nodejs-current=11.3.0-r0 \
apk add --no-cache --virtual .build-dependencies \
yarn=1.12.3-r0 \
\
&& yarn global add [email protected] \
&& apk add --no-cache \
nodejs-current=11.3.0-r0 \
\
&& yarn global add \
modclean \
[email protected] \
\
&& modclean \
--path /usr/local/share/.config/yarn/global \
--no-progress \
--keep-empty \
--run \
\
&& yarn global remove modclean \
&& yarn cache clean \
&& apk del --purge .build-dependencies \
&& rm -fr /tmp/*

# Copy root filesystem
Expand Down
1 change: 1 addition & 0 deletions thelounge/build.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"aarch64": "hassioaddons/base-aarch64:3.0.0",
"amd64": "hassioaddons/base-amd64:3.0.0",
"armhf": "hassioaddons/base-armhf:3.0.0",
"armv7": "hassioaddons/base-armv7:3.0.0",
"i386": "hassioaddons/base-i386:3.0.0"
},
"squash": false
Expand Down
2 changes: 1 addition & 1 deletion thelounge/rootfs/etc/cont-init.d/20-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ if ! bashio::fs.directory_exists "/data/thelounge"; then
else
for theme in $(bashio::config "themes")
do
/usr/local/bin/thelounge install "$theme"
/usr/local/bin/thelounge install "${theme}"
done
fi

0 comments on commit e57c2d4

Please sign in to comment.