File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 5959 env :
6060 PLATFORMS : linux/amd64,linux/arm64/v8,linux/arm/v7
6161 run : |
62- set -euo pipefail
62+ set -euxo pipefail
6363
6464 VERSION="$(git describe --exact-match --tags HEAD)"
6565 TAG="$VERSION"
8282 fi
8383
8484 docker buildx build \
85+ --label org.opencontainers.artifact.created="$(date --rfc-3339=seconds --utc)" \
8586 --push \
8687 --platform "${PLATFORMS}" \
8788 "${TAGS[@]}" \
Original file line number Diff line number Diff line change 11FROM node:lts-alpine
22
3+ ARG THELOUNGE_VERSION=4.4.0-pre.2
4+
5+ LABEL org.opencontainers.image.title "Official The Lounge image"
6+ LABEL org.opencontainers.image.description "Official Docker image for The Lounge, a modern web IRC client designed for self-hosting."
7+ LABEL org.opencontainers.image.authors "The Lounge #thelounge @irc.libera.chat"
8+ LABEL org.opencontainers.image.url "https://github.com/thelounge/thelounge-docker"
9+ LABEL org.opencontainers.image.source "https://github.com/thelounge/thelounge-docker"
10+ LABEL org.opencontainers.image.version "${THELOUNGE_VERSION}"
11+ LABEL org.opencontainers.image.licenses "MIT"
12+
313ENV NODE_ENV production
414
515ENV THELOUNGE_HOME "/var/opt/thelounge"
@@ -15,7 +25,6 @@ CMD ["thelounge", "start"]
1525COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
1626
1727# Install thelounge.
18- ARG THELOUNGE_VERSION=4.4.0-pre.2
1928RUN apk --update --no-cache --virtual build-deps add python3 build-base git && \
2029 ln -sf python3 /usr/bin/python && \
2130 yarn --non-interactive --frozen-lockfile global add thelounge@${THELOUNGE_VERSION} && \
Original file line number Diff line number Diff line change 11![ The Lounge] ( https://raw.githubusercontent.com/thelounge/thelounge.github.io/master/assets/logos/logo/TL_Grey%26Yellow_Vertical_logotype_Transparent_Bg/TL_Grey%26Yellow_Vertical_logotype_Transparent_Bg.png )
22
3- #### Docker container for The Lounge, modern web IRC client designed for self-hosting
3+ #### Docker image for The Lounge, a modern web IRC client designed for self-hosting
44
55** [ Website] ( https://thelounge.chat/ ) • [ Docs] ( https://thelounge.chat/docs ) • [ Demo] ( https://demo.thelounge.chat/ ) **
66
You can’t perform that action at this time.
0 commit comments