-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat into impr…
…ove/setup-wizard * 'develop' of github.com:RocketChat/Rocket.Chat: (176 commits) [IMPROVE] Admin page header buttons consistency (#24168) i18n: Language update from LingoHub 🤖 on 2022-01-17Z (#24193) [FIX] Integration section crashing opening in My Account (#24068) [IMPROVE] Rewrite roomNotFound to React Component (#24044) Regression: Enable custom emoji on admin custom status page (#24186) Chore: Update Meteor to 2.5.3 (#24075) [NEW] Apple Login (#24060) Chore: Update Apps-Engine to 1.29.2 (#24171) feat: enabling emoji on custom status (#24170) [FIX] App Framework Enable hanging indefinitely (#24158) [FIX] CSV Importer failing to import users (#24090) Fix Engagement Dashboard API requests (#24142) Language update from LingoHub 🤖 (#24127) Chore: Migrate useOutsideClick to fuselage-hooks (#24133) Revert "Use fibers to store context" Use fibers to store context Chore: Include REG_TOKEN in docker-compose (#24123) [FIX] Custom Emoji Image preview #24117 [IMPROVE] Added a Reset Button in the Account Profile Page (#24078) Revert: "[IMPROVE] Throw 404 error in invalid endpoints" (#24118) ...
- Loading branch information
Showing
2,808 changed files
with
67,682 additions
and
52,463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
FROM node:12.22.1-buster-slim | ||
FROM node:14.18.2-bullseye-slim | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
# Install MongoDB and dependencies | ||
ENV MONGO_MAJOR 4.2 | ||
ENV MONGO_VERSION 4.2.10 | ||
ENV MONGO_MAJOR=5.0 \ | ||
MONGO_VERSION=5.0.5 | ||
|
||
RUN set -x \ | ||
&& apt-get update \ | ||
&& apt-get install -y wget gnupg dirmngr pwgen \ | ||
&& wget -qO - "https://www.mongodb.org/static/pgp/server-${MONGO_MAJOR}.asc" | apt-key add - \ | ||
&& echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/$MONGO_MAJOR main" | tee "/etc/apt/sources.list.d/mongodb-org-${MONGO_MAJOR}.list" \ | ||
&& wget -qO - "https://www.mongodb.org/static/pgp/server-$MONGO_MAJOR.asc" | apt-key add - \ | ||
&& echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/$MONGO_MAJOR main" | tee "/etc/apt/sources.list.d/mongodb-org-$MONGO_MAJOR.list" \ | ||
&& apt-get update \ | ||
&& apt-get install -y \ | ||
mongodb-org=$MONGO_VERSION \ | ||
mongodb-org-server=$MONGO_VERSION \ | ||
mongodb-org-shell=$MONGO_VERSION \ | ||
mongodb-org-mongos=$MONGO_VERSION \ | ||
mongodb-org-tools=$MONGO_VERSION \ | ||
fontconfig \ | ||
mongodb-org=$MONGO_VERSION \ | ||
mongodb-org-server=$MONGO_VERSION \ | ||
mongodb-org-shell=$MONGO_VERSION \ | ||
mongodb-org-mongos=$MONGO_VERSION \ | ||
mongodb-org-tools=$MONGO_VERSION \ | ||
fontconfig \ | ||
&& apt-get clean my room \ | ||
&& groupadd -g 65533 -r rocketchat \ | ||
&& useradd -u 65533 -r -g rocketchat rocketchat \ | ||
|
@@ -36,12 +36,12 @@ RUN aptMark="$(apt-mark showmanual)" \ | |
&& apt-mark auto '.*' > /dev/null \ | ||
&& apt-mark manual $aptMark > /dev/null \ | ||
&& find /usr/local -type f -executable -exec ldd '{}' ';' \ | ||
| awk '/=>/ { print $(NF-1) }' \ | ||
| sort -u \ | ||
| xargs -r dpkg-query --search \ | ||
| cut -d: -f1 \ | ||
| sort -u \ | ||
| xargs -r apt-mark manual \ | ||
| awk '/=>/ { print $(NF-1) }' \ | ||
| sort -u \ | ||
| xargs -r dpkg-query --search \ | ||
| cut -d: -f1 \ | ||
| sort -u \ | ||
| xargs -r apt-mark manual \ | ||
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ | ||
&& npm cache clear --force | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:12.22.1-buster-slim | ||
FROM node:14.18.2-bullseye-slim | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
|
@@ -20,12 +20,12 @@ RUN aptMark="$(apt-mark showmanual)" \ | |
&& apt-mark auto '.*' > /dev/null \ | ||
&& apt-mark manual $aptMark > /dev/null \ | ||
&& find /usr/local -type f -executable -exec ldd '{}' ';' \ | ||
| awk '/=>/ { print $(NF-1) }' \ | ||
| sort -u \ | ||
| xargs -r dpkg-query --search \ | ||
| cut -d: -f1 \ | ||
| sort -u \ | ||
| xargs -r apt-mark manual \ | ||
| awk '/=>/ { print $(NF-1) }' \ | ||
| sort -u \ | ||
| xargs -r dpkg-query --search \ | ||
| cut -d: -f1 \ | ||
| sort -u \ | ||
| xargs -r apt-mark manual \ | ||
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ | ||
&& npm cache clear --force | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
FROM registry.access.redhat.com/ubi8/nodejs-12 | ||
|
||
ENV RC_VERSION 4.2.0-develop | ||
ENV RC_VERSION 4.4.0-develop | ||
|
||
MAINTAINER [email protected] | ||
|
||
LABEL name="Rocket.Chat" \ | ||
vendor="Rocket.Chat" \ | ||
version="${RC_VERSION}" \ | ||
release="1" \ | ||
url="https://rocket.chat" \ | ||
summary="The Ultimate Open Source Web Chat Platform" \ | ||
description="The Ultimate Open Source Web Chat Platform" \ | ||
run="docker run -d --name ${NAME} ${IMAGE}" | ||
vendor="Rocket.Chat" \ | ||
version="${RC_VERSION}" \ | ||
release="1" \ | ||
url="https://rocket.chat" \ | ||
summary="The Ultimate Open Source Web Chat Platform" \ | ||
description="The Ultimate Open Source Web Chat Platform" \ | ||
run="docker run -d --name ${NAME} ${IMAGE}" | ||
|
||
USER root | ||
RUN dnf install -y python38 && rm -rf /var/cache /var/log/dnf* /var/log/yum.* | ||
USER default | ||
|
||
RUN set -x \ | ||
&& gpg --keyserver keys.openpgp.org --recv-keys 0E163286C20D07B9787EBE9FD7F9D0414FD08104 \ | ||
&& curl -SLf "https://releases.rocket.chat/${RC_VERSION}/download" -o rocket.chat.tgz \ | ||
&& curl -SLf "https://releases.rocket.chat/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \ | ||
&& gpg --verify rocket.chat.tgz.asc \ | ||
&& tar -zxf rocket.chat.tgz -C /opt/app-root/src/ \ | ||
&& cd /opt/app-root/src/bundle/programs/server \ | ||
&& npm install | ||
&& gpg --keyserver keys.openpgp.org --recv-keys 0E163286C20D07B9787EBE9FD7F9D0414FD08104 \ | ||
&& curl -SLf "https://releases.rocket.chat/${RC_VERSION}/download" -o rocket.chat.tgz \ | ||
&& curl -SLf "https://releases.rocket.chat/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \ | ||
&& gpg --verify rocket.chat.tgz.asc \ | ||
&& tar -zxf rocket.chat.tgz -C /opt/app-root/src/ \ | ||
&& cd /opt/app-root/src/bundle/programs/server \ | ||
&& npm install | ||
|
||
COPY licenses /licenses | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.