20 lines
346 B
Docker
Raw Normal View History

2021-06-19 09:46:24 +00:00
FROM ubuntu:20.04
COPY install-goma-server.sh .
COPY start-goma-server.sh .
COPY config-file .
RUN apt-get update \
&& \
2021-06-30 12:44:14 +00:00
apt-get -y install sudo wget git socat \
2021-06-19 09:46:24 +00:00
&& \
sudo chmod +x ./install-goma-server.sh \
&& \
sudo chmod +x ./start-goma-server.sh \
&& \
./install-goma-server.sh
CMD ./start-goma-server.sh