Initial dockerfiles
This commit is contained in:
19
images/goma-server/Dockerfile
Normal file
19
images/goma-server/Dockerfile
Normal 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
|
||||
|
||||
|
Reference in New Issue
Block a user