-
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
67 additions
and
54 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
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 |
---|---|---|
|
@@ -8,23 +8,18 @@ COPY id_rsa.pub .ssh/ | |
RUN chmod 0400 .ssh/id_rsa | ||
|
||
RUN dnf -y install dnf-plugins-core | ||
RUN yum update -y | ||
RUN yum groupinstall -y "Development Tools" | ||
RUN yum install -y epel-release | ||
RUN dnf update -y | ||
RUN dnf groupinstall -y "Development Tools" | ||
RUN dnf install -y epel-release | ||
RUN dnf config-manager --set-enabled PowerTools | ||
RUN yum install --nogpgcheck -y openssh-server cmake3 gcc-c++ protobuf-devel libsodium-devel | ||
RUN dnf install --nogpgcheck -y openssh-server cmake3 gcc-c++ protobuf-devel libsodium-devel | ||
RUN alternatives --install /usr/local/bin/cmake cmake /usr/bin/cmake3 20 \ | ||
--slave /usr/local/bin/ctest ctest /usr/bin/ctest3 \ | ||
--slave /usr/local/bin/cpack cpack /usr/bin/cpack3 \ | ||
--slave /usr/local/bin/ccmake ccmake /usr/bin/ccmake3 \ | ||
--family cmake | ||
|
||
RUN git config --global user.email "[email protected]" | ||
RUN git config --global user.name "Jason Gauci" | ||
|
||
RUN echo -e "StrictHostKeyChecking no\n" >> ~/.ssh/config | ||
|
||
RUN git clone --branch release [email protected]:MisterTea/EternalTerminal.git | ||
RUN git clone --branch release https://github.com/MisterTea/EternalTerminal.git | ||
RUN mkdir -p EternalTerminal/build | ||
WORKDIR /root/EternalTerminal/build | ||
RUN cmake -DFULL_PROTOBUF=ON .. | ||
|
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 |
---|---|---|
|
@@ -10,8 +10,4 @@ COPY .gnupg .gnupg | |
RUN zypper --non-interactive install -t pattern devel_C_C++ | ||
RUN zypper --non-interactive install git openssh cmake gcc-c++ protobuf-devel libsodium-devel | ||
|
||
RUN git config --global user.email "[email protected]" | ||
RUN git config --global user.name "Jason Gauci" | ||
|
||
RUN ssh-keyscan github.com >> ~/.ssh/known_hosts | ||
RUN git clone --branch release [email protected]:MisterTea/EternalTerminal.git | ||
RUN git clone --branch release https://github.com/MisterTea/EternalTerminal.git |
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 |
---|---|---|
|
@@ -12,10 +12,6 @@ ARG DEBIAN_FRONTEND=noninteractive | |
|
||
RUN apt update && apt upgrade -y && apt install -y distro-info build-essential git devscripts ubuntu-dev-tools aptly dput jq libsodium-dev libprotobuf-dev protobuf-compiler cmake libutempter-dev debhelper dh-systemd | ||
|
||
RUN git config --global user.email "[email protected]" | ||
RUN git config --global user.name "Jason Gauci" | ||
|
||
RUN ssh-keyscan github.com >> ~/.ssh/known_hosts | ||
RUN git clone --branch release [email protected]:MisterTea/EternalTerminal.git | ||
RUN git clone --branch release https://github.com/MisterTea/EternalTerminal.git | ||
|
||
COPY ubuntu/deploy_ubuntu_ppa.sh . |
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
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