Skip to content

Commit

Permalink
Merge pull request #3 from omarkhater-school/initial_depolyment
Browse files Browse the repository at this point in the history
Initial depolyment
  • Loading branch information
omarkhater-school authored Oct 15, 2024
2 parents 242e70a + 8a6b187 commit 65c1006
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN echo 'root:root' | chpasswd
RUN sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
RUN sed -i 's/#PasswordAuthentication yes/PasswordAuthentication yes/' /etc/ssh/sshd_config
RUN sed -i 's@session\s*required\s*pam_loginuid.so@session optional pam_loginuid.so@g' /etc/pam.d/sshd

RUN sudo apt install -y firefox
# to include the setup script
WORKDIR /home
COPY setup_rvm.sh setup_rvm.sh
Expand Down
5 changes: 4 additions & 1 deletion spec/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@

require 'simplecov'
require 'simplecov_json_formatter'
SimpleCov.formatter = SimpleCov::Formatter::JSONFormatter
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new([
SimpleCov::Formatter::HTMLFormatter,
SimpleCov::Formatter::JSONFormatter
])
SimpleCov.start 'rails'

# This file was generated by the `rails generate rspec:install` command. Conventionally, all
Expand Down

0 comments on commit 65c1006

Please sign in to comment.