-
Notifications
You must be signed in to change notification settings - Fork 911
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Too Many commits
- Loading branch information
Anthony Dresser
authored
Dec 7, 2019
1 parent
6fb120f
commit a7ff238
Showing
17 changed files
with
580 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2019-08-30T20:24:23.714Z | ||
2019-12-01T02:20:58.491Z |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#Download base image ubuntu 16.04 | ||
FROM ubuntu:16.04 | ||
|
||
# Update Software repository | ||
RUN apt-get update | ||
|
||
RUN apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus libgtk-3-0 | ||
|
||
ADD ./ /opt/ads-server | ||
|
||
RUN chmod +x /opt/ads-server/server.sh && chmod +x /opt/ads-server/node | ||
|
||
CMD ["/opt/ads-server/server.sh"] | ||
|
||
EXPOSE 8000:8000 | ||
EXPOSE 8001:8001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#Download base image ubuntu 16.04 | ||
FROM ubuntu:16.04 | ||
|
||
# Update Software repository | ||
RUN apt-get update --fix-missing | ||
|
||
RUN apt-get install -y libxkbfile-dev pkg-config libsecret-1-dev libxss1 dbus xvfb libgtk-3-0 \ | ||
libkrb5-dev git apt-transport-https ca-certificates curl gnupg-agent software-properties-common \ | ||
libnss3 libasound2 make gcc libx11-dev fakeroot rpm | ||
|
||
#docker | ||
RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - | ||
RUN apt-key fingerprint 0EBFCD88 | ||
RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | ||
RUN apt-get update | ||
RUN apt-get -y install docker-ce docker-ce-cli containerd.io | ||
|
||
ADD ./xvfb.init /etc/init.d/xvfb | ||
RUN chmod +x /etc/init.d/xvfb | ||
RUN update-rc.d xvfb defaults |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.