Skip to content

Commit

Permalink
[email protected] w/o ARM support (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman authored Jun 12, 2021
1 parent e832638 commit 75828f0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 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,linux/arm64/v8,linux/arm/v7
PLATFORMS: linux/amd64
DOCKER_REPOSITORY: thelounge/thelounge
run: |
TAG="$(git rev-parse --short HEAD)"
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

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

*Note: ARM images for 4.3.0-pre.2 are still being worked on.*

## 4.2.0 (2020-08-20)
- Bump [`thelounge`][1] to [`4.2.0`](https://github.com/thelounge/thelounge/releases/tag/v4.2.0).
- Add support for ARM (ARM64 + ARMv7) images ([#109](https://github.com/thelounge/thelounge-docker/pull/109)) by [@klausenbusk](https://github.com/klausenbusk)
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.1
ARG THELOUNGE_VERSION=4.3.0-pre.2
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.1
THELOUNGE_VERSION?=4.3.0-pre.2
ORGANISATION?=thelounge

all: main alpine
Expand Down
2 changes: 1 addition & 1 deletion alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CMD ["thelounge", "start"]
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh

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

0 comments on commit 75828f0

Please sign in to comment.