thelounge@4.3.0-pre.2 w/o ARM support (#119)

This commit is contained in:
William Boman 2021-06-12 14:12:10 +02:00 committed by GitHub
parent e832638cb6
commit 75828f0cc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 6 deletions

View file

@ -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)"

View file

@ -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)

View file

@ -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

View file

@ -1,4 +1,4 @@
THELOUNGE_VERSION?=4.3.0-pre.1
THELOUNGE_VERSION?=4.3.0-pre.2
ORGANISATION?=thelounge
all: main alpine

View file

@ -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 && \