-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
62 lines (54 loc) · 1.93 KB
/
Dockerfile
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Alastria docker
# Copyright 2018 Councilbox Technology, S.L., Rodrigo Martínez Castaño
#
# This product includes software developed at
# Councilbox Technology, S.L. (https://www.councilbox.com/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM ubuntu:16.04
################################################
# ALASTRIA DOCKER
################################################
ARG ALASTRIA_BRANCH=develop
ARG DOCKER_VERSION=latest
RUN \
apt-get update \
&& apt-get -y upgrade \
&& apt-get -y install \
git \
curl \
&& cd /opt \
&& git clone -b $ALASTRIA_BRANCH https://github.com/alastria/alastria-node \
&& cd alastria-node/scripts \
&& sed -i 's/sudo//g' bootstrap.sh \
&& sed -i 's/gopath$//' bootstrap.sh \
&& sed -i 's@~/alastria-node@/opt/alastria-node@g' init.sh \
&& sed -i 's@~/alastria-node@/opt/alastria-node@g' restart.sh \
&& sed -i 's@~/alastria-node@/opt/alastria-node@g' update.sh \
&& ./bootstrap.sh
ARG MONITOR_ENABLED=1
ENV \
GOROOT=/usr/local/go \
GOPATH=/opt/golang \
PATH=/usr/local/go/bin:/opt/golang/bin:$PATH \
MONITOR_ENABLED=$MONITOR_ENABLED \
DOCKER_VERSION=$DOCKER_VERSION
WORKDIR /opt/alastria-node/scripts
RUN \
if [ $MONITOR_ENABLED -eq 1 ]; then ./monitor.sh build; fi \
&& apt-get autoremove \
&& apt-get clean
VOLUME /root/alastria
EXPOSE 9000 21000 21000/udp 22000 8443
COPY entrypoint.sh suicide.sh /usr/bin/
ENTRYPOINT ["entrypoint.sh"]