Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rocket.Chat
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RocketChat
Rocket.Chat
Commits
40d4f47a
Commit
40d4f47a
authored
9 years ago
by
Gabriel Engel
Browse files
Options
Downloads
Patches
Plain Diff
fixed version on the dockerfile
parent
f3580b9f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.docker/develop/Dockerfile
+12
-19
12 additions, 19 deletions
.docker/develop/Dockerfile
.docker/latest/Dockerfile
+1
-1
1 addition, 1 deletion
.docker/latest/Dockerfile
with
13 additions
and
20 deletions
.docker/develop/Dockerfile
+
12
−
19
View file @
40d4f47a
FROM
node:0.10
FROM
rocketchat/base
# IMPORTANT - FOR TESTING ONLY - DO NOT USE THIS FOR DEVELOPMENT OR PRODUCTION!
MAINTAINER
buildmaster@rocket.chat
ENV
RC_VERSION develop
RUN
groupadd
-r
rocketchat
\
&&
useradd
-r
-g
rocketchat rocketchat
MAINTAINER
buildmaster@rocket.chat
VOLUME
/app/uploads
# gpg: key 4FD08014: public key "Rocket.Chat Buildmaster <buildmaster@rocket.chat>" imported
RUN
gpg
--keyserver
ha.pool.sks-keyservers.net
--recv-keys
0E163286C20D07B9787EBE9FD7F9D0414FD08104
ENV
RC_VERSION develop
WORKDIR
/app
RUN
curl
-fSL
"https://rocket.chat/releases/
${
RC_VERSION
}
/download"
-o
rocket.chat.tgz
\
&&
curl
-fSL
"https://rocket.chat/releases/
${
RC_VERSION
}
/asc"
-o
rocket.chat.tgz.asc
\
&&
gpg
--verify
rocket.chat.tgz.asc
\
&&
tar
zxvf rocket.chat.tgz
\
&&
rm
rocket.chat.tgz
\
&&
cd
bundle/programs/server
\
&&
npm
install
RUN
set
-x
\
&&
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
\
&&
gpg
--verify
rocket.chat.tgz.asc
\
&&
tar
-zxf
rocket.chat.tgz
-C
/app
\
&&
rm
rocket.chat.tgz rocket.chat.tgz.asc
\
&&
cd
/app/bundle/programs/server
\
&&
npm
install
\
&&
npm cache clear
USER
rocketchat
...
...
This diff is collapsed.
Click to expand it.
.docker/latest/Dockerfile
+
1
−
1
View file @
40d4f47a
FROM
rocketchat/base
ENV
RC_VERSION
develop
ENV
RC_VERSION
latest
MAINTAINER
buildmaster@rocket.chat
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment