2021-06-19 15:16:24 +05:30
|
|
|
FROM ubuntu:20.04
|
|
|
|
|
|
|
|
COPY install-goma-server.sh .
|
|
|
|
COPY start-goma-server.sh .
|
|
|
|
COPY config-file .
|
|
|
|
|
|
|
|
RUN apt-get update \
|
|
|
|
&& \
|
2021-08-03 20:56:16 +05:30
|
|
|
apt-get -y install sudo wget git socat redis-server \
|
2021-06-19 15:16:24 +05:30
|
|
|
&& \
|
|
|
|
sudo chmod +x ./install-goma-server.sh \
|
|
|
|
&& \
|
|
|
|
sudo chmod +x ./start-goma-server.sh \
|
|
|
|
&& \
|
|
|
|
./install-goma-server.sh
|
|
|
|
|
|
|
|
CMD ./start-goma-server.sh
|
|
|
|
|
|
|
|
|