Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
williamboman authored Nov 21, 2018
1 parent 6511f40 commit 415471b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Changelog

## Release candidate (3.0.0-rc.4) (2018-10-30)
- Bump [`thelounge`][1] to [`v3.0.0-rc.4`](https://github.com/thelounge/lounge/releases/tag/v3.0.0-rc.3).
- Use `node v8`.
## Release candidate (3.0.0-rc.5) (2018-11-21)
- Bump [`thelounge`][1] to [`v3.0.0-rc.5`](https://github.com/thelounge/lounge/releases/tag/v3.0.0-rc.5).
- Upgrade to `node v10`.

#### Breaking Changes
- Rename the image from `thelounge/lounge` to [`thelounge/thelounge`](https://hub.docker.com/r/thelounge/thelounge/) on DockerHub.
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8
FROM node:10

ENV NODE_ENV production

Expand All @@ -15,6 +15,6 @@ CMD ["thelounge", "start"]
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh

# Install thelounge.
ARG THELOUNGE_VERSION=3.0.0-rc.4
ARG THELOUNGE_VERSION=3.0.0-rc.5
RUN npm install --unsafe-perm -g thelounge@${THELOUNGE_VERSION} && \
npm cache clean --force
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
THELOUNGE_VERSION?=3.0.0-rc.4
THELOUNGE_VERSION?=3.0.0-rc.5
ORGANISATION?=thelounge

all: main alpine
Expand Down
4 changes: 2 additions & 2 deletions alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8-alpine
FROM node:10-alpine

ENV NODE_ENV production

Expand All @@ -15,6 +15,6 @@ CMD ["thelounge", "start"]
COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh

# Install thelounge.
ARG THELOUNGE_VERSION=3.0.0-rc.4
ARG THELOUNGE_VERSION=3.0.0-rc.5
RUN npm install --unsafe-perm -g thelounge@${THELOUNGE_VERSION} && \
npm cache clean --force

0 comments on commit 415471b

Please sign in to comment.