-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #106 from jgaa/staging
Merging recent changes to master. All tests are passing under Debian and Ubuntu. Issue #101 is reproducible under Windows. Working on issue #101, #102, #104, #105
- Loading branch information
Showing
11 changed files
with
508 additions
and
351 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM debian:buster | ||
|
||
MAINTAINER Jarle Aase <[email protected]> | ||
|
||
# In case you need proxy | ||
RUN DEBIAN_FRONTEND="noninteractive" apt-get -q update &&\ | ||
DEBIAN_FRONTEND="noninteractive" apt-get -y -q --no-install-recommends upgrade &&\ | ||
DEBIAN_FRONTEND="noninteractive" apt-get install -y -q \ | ||
openssh-server g++ git \ | ||
build-essential \ | ||
zlib1g-dev g++ cmake make libboost-all-dev libssl-dev \ | ||
default-jdk &&\ | ||
apt-get -y -q autoremove &&\ | ||
apt-get -y -q clean | ||
|
||
# Set user jenkins to the image | ||
RUN useradd -m -d /home/jenkins -s /bin/sh jenkins &&\ | ||
echo "jenkins:jenkins" | chpasswd | ||
|
||
# Standard SSH port | ||
EXPOSE 22 | ||
|
||
# Default command | ||
CMD ["/usr/sbin/sshd", "-D"] |
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 |
---|---|---|
|
@@ -3,13 +3,13 @@ FROM debian:testing | |
MAINTAINER Jarle Aase <[email protected]> | ||
|
||
# In case you need proxy | ||
RUN apt-get -q update &&\ | ||
apt-get -y -q --no-install-recommends upgrade &&\ | ||
apt-get -y -q install openssh-server g++ git \ | ||
automake autoconf ruby ruby-dev rubygems build-essential \ | ||
RUN DEBIAN_FRONTEND="noninteractive" apt-get -q update &&\ | ||
DEBIAN_FRONTEND="noninteractive" apt-get -y -q --no-install-recommends upgrade &&\ | ||
DEBIAN_FRONTEND="noninteractive" apt-get install -y -q\ | ||
openssh-server g++ git \ | ||
build-essential \ | ||
zlib1g-dev g++ cmake make libboost-all-dev libssl-dev \ | ||
openjdk-8-jdk &&\ | ||
gem install --no-ri --no-rdoc fpm &&\ | ||
default-jdk &&\ | ||
apt-get -y -q autoremove &&\ | ||
apt-get -y -q clean | ||
|
||
|
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 |
---|---|---|
|
@@ -2,14 +2,13 @@ FROM debian:stretch | |
|
||
MAINTAINER Jarle Aase <[email protected]> | ||
|
||
# In case you need proxy | ||
RUN apt-get -q update &&\ | ||
apt-get -y -q --no-install-recommends upgrade &&\ | ||
apt-get -y -q install openssh-server g++ git \ | ||
automake autoconf ruby ruby-dev rubygems build-essential \ | ||
RUN DEBIAN_FRONTEND="noninteractive" apt-get -q update &&\ | ||
DEBIAN_FRONTEND="noninteractive" apt-get -y -q --no-install-recommends upgrade &&\ | ||
DEBIAN_FRONTEND="noninteractive" apt-get install -y -q \ | ||
openssh-server g++ git \ | ||
build-essential \ | ||
zlib1g-dev g++ cmake make libboost-all-dev libssl-dev \ | ||
openjdk-8-jdk &&\ | ||
gem install --no-ri --no-rdoc fpm &&\ | ||
apt-get -y -q autoremove &&\ | ||
apt-get -y -q clean | ||
|
||
|
Oops, something went wrong.