FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cloudstack-1/Dockerfile at master · devdeep/cloudstack-1 · GitHub
devdeep
/
cloudstack-1
Public
forked from
apache/cloudstack
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cloudstack-1
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
37 lines (27 loc) · 1 KB
Breadcrumbs
cloudstack-1
/
Dockerfile
Copy path
File metadata and controls
37 lines (27 loc) · 1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
FROM
ubuntu:14.04
RUN
apt-get -y update && apt-get install -y \
genisoimage \
git \
maven \
openjdk-7-jdk \
python-dev \
python-setuptools \
python-pip \
supervisor
RUN
echo
'mysql-server mysql-server/root_password password root'
| debconf-set-selections; \
echo
'mysql-server mysql-server/root_password_again password root'
| debconf-set-selections;
RUN
apt-get install -qqy mysql-server && \
apt-get clean all
RUN
(/usr/bin/mysqld_safe &); sleep 5; mysqladmin -u root -proot password
''
RUN
pip install --allow-external mysql-connector-python mysql-connector-python
COPY
supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY
. ./root
WORKDIR
/root
RUN
mvn -Pdeveloper -Dsimulator -DskipTests clean install
RUN
(/usr/bin/mysqld_safe &); \
sleep 3; \
mvn -Pdeveloper -pl developer -Ddeploydb; \
mvn -Pdeveloper -pl developer -Ddeploydb-simulator; \
pip install tools/marvin/dist/Marvin-4.6.0-SNAPSHOT.tar.gz
EXPOSE
8080
CMD
[
"/usr/bin/supervisord"
]
Back
|
FazBrowse Home
|
New Git URL