-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow docker version prefixes to contain underscores
- Loading branch information
1 parent
7d595bc
commit 650e132
Showing
3 changed files
with
48 additions
and
2 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
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,18 @@ | ||
FROM registry-host.io:5000/myreg/ubuntu:someRepo_19700101.4 | ||
|
||
### SYSTEM DEPENDENCIES | ||
|
||
RUN apt-get update \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get install -y --no-install-recommends \ | ||
build-essential \ | ||
dirmngr \ | ||
git \ | ||
|
||
### RUBY | ||
|
||
# Install Ruby 2.4 | ||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C3173AA6 \ | ||
&& echo "deb http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu zesty main" > /etc/apt/sources.list.d/brightbox.list \ | ||
&& apt-get update | ||
RUN apt-get install -y ruby2.4 ruby2.4-dev |