Skip to content

Commit c289166

Browse files
authored
Merge pull request #1241 from RLOpenCatalyst/stage
Stage for v3.8
2 parents 2fa4b28 + b2c38d5 commit c289166

File tree

154 files changed

+9890
-3882
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+9890
-3882
lines changed

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*/node_modules/
2+
*/*/node_modules/
3+
.git/
4+
.dockerignore
5+
Dockerfile

Dockerfile

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
FROM node:4.6.0
2+
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev libkrb5-dev make g++ ruby libstdc++6
3+
4+
RUN npm install -g kerberos
5+
6+
##Client
7+
RUN npm install -g grunt-cli
8+
RUN npm install -g npm
9+
RUN npm install forever --global
10+
RUN gem install sass
11+
RUN curl -L https://www.opscode.com/chef/install.sh | bash
12+
13+
RUN mkdir -p /rlc/client
14+
RUN mkdir -p /rlc/server
15+
16+
## Client
17+
ADD ./client/cat3 /rlc/client/cat3
18+
ADD ./client/htmls /rlc/client/htmls
19+
WORKDIR /rlc/client/cat3
20+
RUN npm install --production
21+
RUN npm run-script build-prod
22+
23+
## Server
24+
WORKDIR /rlc/server
25+
ADD ./server /rlc/server
26+
RUN node install.js
27+
28+
EXPOSE 3001
29+
30+
## Server App
31+
# CMD forever start app.js
32+
WORKDIR /rlc/server/app
33+
CMD node app.js
5.97 KB
Loading
2.83 KB
Loading
2.99 KB
Loading
3.2 KB
Loading

client/cat3/images/bots/openDJ.png

3.58 KB
Loading
4.06 KB
Loading
3.78 KB
Loading
3.67 KB
Loading

0 commit comments

Comments
 (0)