Initial dockerfiles

This commit is contained in:
uazo
2021-06-19 09:46:24 +00:00
parent 6a3724fb28
commit a669eb5f0c
22 changed files with 450 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
FROM ubuntu:20.04
COPY install-goma-server.sh .
COPY start-goma-server.sh .
COPY config-file .
RUN apt-get update \
&& \
apt-get -y install sudo wget git \
&& \
sudo chmod +x ./install-goma-server.sh \
&& \
sudo chmod +x ./start-goma-server.sh \
&& \
./install-goma-server.sh
CMD ./start-goma-server.sh