Skip to content
Snippets Groups Projects
Commit d2e8b41a authored by Maki Nishifuji's avatar Maki Nishifuji
Browse files

Fix #6023

parent 8be54194
No related branches found
No related tags found
No related merge requests found
...@@ -8,12 +8,13 @@ RUN set -x \ ...@@ -8,12 +8,13 @@ RUN set -x \
&& curl -SLf "https://rocket.chat/releases/${RC_VERSION}/download" -o rocket.chat.tgz \ && curl -SLf "https://rocket.chat/releases/${RC_VERSION}/download" -o rocket.chat.tgz \
&& curl -SLf "https://rocket.chat/releases/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \ && curl -SLf "https://rocket.chat/releases/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \
&& gpg --verify rocket.chat.tgz.asc \ && gpg --verify rocket.chat.tgz.asc \
&& mkdir -p /app \
&& tar -zxf rocket.chat.tgz -C /app \ && tar -zxf rocket.chat.tgz -C /app \
&& rm rocket.chat.tgz rocket.chat.tgz.asc \ && rm rocket.chat.tgz rocket.chat.tgz.asc \
&& cd /app/bundle/programs/server \ && cd /app/bundle/programs/server \
&& npm install \ && npm install \
&& npm cache clear \ && npm cache clear \
&& chown rocketchat:rocketchat /app -R && chown -R rocketchat:rocketchat /app
USER rocketchat USER rocketchat
...@@ -23,7 +24,7 @@ WORKDIR /app/bundle ...@@ -23,7 +24,7 @@ WORKDIR /app/bundle
# needs a mongoinstance - defaults to container linking with alias 'mongo' # needs a mongoinstance - defaults to container linking with alias 'mongo'
ENV MONGO_URL=mongodb://mongo:27017/rocketchat \ ENV MONGO_URL=mongodb://mongo:27017/rocketchat \
MONGO_OPLOG_URL=mongodb://mongo:27017/local \ MONGO_OPLOG_URL=mongodb://mongo:27017/local \
HOME=/tmp \ HOME=/tmp \
PORT=3000 \ PORT=3000 \
ROOT_URL=http://localhost:3000 \ ROOT_URL=http://localhost:3000 \
......
...@@ -8,12 +8,13 @@ RUN set -x \ ...@@ -8,12 +8,13 @@ RUN set -x \
&& curl -SLf "https://rocket.chat/releases/${RC_VERSION}/download" -o rocket.chat.tgz \ && curl -SLf "https://rocket.chat/releases/${RC_VERSION}/download" -o rocket.chat.tgz \
&& curl -SLf "https://rocket.chat/releases/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \ && curl -SLf "https://rocket.chat/releases/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \
&& gpg --verify rocket.chat.tgz.asc \ && gpg --verify rocket.chat.tgz.asc \
&& mkdir -p /app \
&& tar -zxf rocket.chat.tgz -C /app \ && tar -zxf rocket.chat.tgz -C /app \
&& rm rocket.chat.tgz rocket.chat.tgz.asc \ && rm rocket.chat.tgz rocket.chat.tgz.asc \
&& cd /app/bundle/programs/server \ && cd /app/bundle/programs/server \
&& npm install \ && npm install \
&& npm cache clear \ && npm cache clear \
&& chown rocketchat:rocketchat /app -R && chown -R rocketchat:rocketchat /app
USER rocketchat USER rocketchat
...@@ -23,6 +24,7 @@ WORKDIR /app/bundle ...@@ -23,6 +24,7 @@ WORKDIR /app/bundle
# needs a mongoinstance - defaults to container linking with alias 'mongo' # needs a mongoinstance - defaults to container linking with alias 'mongo'
ENV MONGO_URL=mongodb://mongo:27017/rocketchat \ ENV MONGO_URL=mongodb://mongo:27017/rocketchat \
MONGO_OPLOG_URL=mongodb://mongo:27017/local \
HOME=/tmp \ HOME=/tmp \
PORT=3000 \ PORT=3000 \
ROOT_URL=http://localhost:3000 \ ROOT_URL=http://localhost:3000 \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment