-
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
Martin Fenner
committed
Dec 19, 2019
1 parent
f2a85f5
commit df15eca
Showing
2 changed files
with
5 additions
and
5 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: ruby | ||
rvm: | ||
- 2.4.4 | ||
- 2.6.5 | ||
sudo: required | ||
|
||
services: | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM phusion/passenger-full:0.9.30 | ||
MAINTAINER Martin Fenner "[email protected]" | ||
FROM phusion/passenger-full:1.0.9 | ||
LABEL maintainer="[email protected]" | ||
|
||
# Set correct environment variables | ||
ENV HOME /home/app | ||
|
@@ -10,8 +10,8 @@ RUN usermod -a -G docker_env app | |
# Use baseimage-docker's init process | ||
CMD ["/sbin/my_init"] | ||
|
||
# Install Ruby 2.4.4 | ||
RUN bash -lc 'rvm --default use ruby-2.4.4' | ||
# Use Ruby 2.6.5 | ||
RUN bash -lc 'rvm --default use ruby-2.6.5' | ||
|
||
# Update installed APT packages, clean up when done | ||
RUN apt-get update && \ | ||
|