Created
June 25, 2018 05:15
-
-
Save maemichi-monosense/f96f7590f11a07d3b79f40f2d7a1e458 to your computer and use it in GitHub Desktop.
Amazon Linux 2, Ruby 2.4
This file contains hidden or 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
| version: '3' | |
| services: | |
| ruby: | |
| build: . | |
| image: amzn-ruby:2-2.4 |
This file contains hidden or 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
| FROM amazonlinux:2 | |
| RUN yum -y install yum-plugin-fastestmirror \ | |
| && yum -y update \ | |
| ; | |
| RUN amazon-linux-extras install -y ruby2.4 | |
| CMD tail -f /dev/null |
This file contains hidden or 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
| command: | |
| ruby --version: | |
| exit-status: 0 | |
| stdout: | |
| - /ruby 2.4.\d+p/ | |
| stderr: [] | |
| timeout: 1000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment