Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman authored Nov 4, 2021
1 parent 9697da4 commit c65d411
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Build Docker image
env:
PLATFORMS: linux/amd64
PLATFORMS: linux/amd64,linux/arm64/v8,linux/arm/v7
DOCKER_REPOSITORY: thelounge/thelounge
run: |
TAG="$(git rev-parse --short HEAD)"
Expand Down
7 changes: 2 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
# Changelog

## 4.3.0-pre.4 (2021-07-04)
- Bump [`thelounge`][1] to [`4.3.0-pre.4`](https://github.com/thelounge/thelounge/releases/tag/v4.3.0-pre.4).
- Bump Node version from 12 to 14 (LTS).

*Note: ARM images for 4.3.0-pre.4 are still being worked on.*
## 4.3.0-pre.6 (2021-11-04)
- Bump [`thelounge`][1] to [`4.3.0-pre.6`](https://github.com/thelounge/thelounge/releases/tag/v4.3.0-pre.6).

## 4.2.0 (2020-08-20)
- Bump [`thelounge`][1] to [`4.2.0`](https://github.com/thelounge/thelounge/releases/tag/v4.2.0).
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ CMD ["thelounge", "start"]
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh

# Install thelounge.
ARG THELOUNGE_VERSION=4.3.0-pre.4
ARG THELOUNGE_VERSION=4.3.0-pre.6
RUN yarn --non-interactive --frozen-lockfile global add thelounge@${THELOUNGE_VERSION} && \
yarn --non-interactive cache clean
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
THELOUNGE_VERSION?=4.3.0-pre.4
THELOUNGE_VERSION?=4.3.0-pre.6
ORGANISATION?=thelounge

all: main alpine
Expand Down
6 changes: 3 additions & 3 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ CMD ["thelounge", "start"]
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh

# Install thelounge.
ARG THELOUNGE_VERSION=4.3.0-pre.4
RUN apk --update --no-cache add python build-base && \
ARG THELOUNGE_VERSION=4.3.0-pre.6
RUN apk --update --no-cache add python3 build-base && \
yarn --non-interactive --frozen-lockfile global add thelounge@${THELOUNGE_VERSION} && \
yarn --non-interactive cache clean && \
apk del python build-base
apk del python3 build-base

0 comments on commit c65d411

Please sign in to comment.