-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
ff0bf9b
commit 7033c53
Showing
8 changed files
with
170 additions
and
38 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM alt | ||
|
||
RUN \ | ||
apt-get update && \ | ||
apt-get install -y \ | ||
gcc \ | ||
libruby-devel \ | ||
libpcre-devel \ | ||
cmake \ | ||
make \ | ||
ruby \ | ||
openssl \ | ||
zlib \ | ||
sudo \ | ||
which | ||
|
||
WORKDIR /opt/ilios |
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 @@ | ||
FROM archlinux | ||
|
||
RUN \ | ||
pacman --sync --noconfirm --refresh --sysupgrade && \ | ||
pacman --sync --noconfirm \ | ||
git \ | ||
gcc \ | ||
cmake \ | ||
make \ | ||
ruby \ | ||
openssl \ | ||
zlib \ | ||
sudo \ | ||
which | ||
|
||
WORKDIR /opt/ilios |
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,7 @@ | ||
#!/bin/bash | ||
|
||
script_dir=$(cd $(dirname ${BASH_SOURCE:-$0}); pwd) | ||
platform="$1" | ||
dockerfile="${platform}.dockerfile" | ||
|
||
docker build -t "ilios-${platform}" -f ${dockerfile} ${script_dir} |
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,7 @@ | ||
#!/bin/bash | ||
|
||
prject_dir="$(cd $(dirname ${BASH_SOURCE:-$0}); pwd)/.." | ||
platform="$1" | ||
dockerfile="${platform}.dockerfile" | ||
|
||
docker run -v $prject_dir:/opt/ilios --rm -it "ilios-${platform}" bash |
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 fedora | ||
|
||
RUN \ | ||
dnf install -y \ | ||
git \ | ||
gcc \ | ||
g++ \ | ||
cmake \ | ||
make \ | ||
redhat-rpm-config \ | ||
ruby-devel \ | ||
openssl-devel \ | ||
zlib-devel \ | ||
sudo \ | ||
which && \ | ||
dnf clean all | ||
|
||
WORKDIR /opt/ilios |
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,17 @@ | ||
FROM ubuntu | ||
|
||
RUN \ | ||
apt-get update && \ | ||
apt-get install -y \ | ||
git \ | ||
gcc \ | ||
g++ \ | ||
cmake \ | ||
make \ | ||
ruby-bundler \ | ||
ruby-dev \ | ||
zlib1g-dev \ | ||
libssl-dev \ | ||
sudo | ||
|
||
WORKDIR /opt/ilios |
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