Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed assets do not compile error #335

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
FROM internetee/ruby:2.7
FROM ruby:3.0.3
MAINTAINER maciej.szlosarczyk@internet.ee

RUN mkdir -p /opt/webapps/app/tmp/pids
WORKDIR /opt/webapps/app
COPY Gemfile Gemfile.lock ./
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y nodejs \
npm
RUN gem install bundler && bundle install --jobs 20 --retry 5

EXPOSE 3000
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
source 'https://rubygems.org'

gem 'aws-sdk-ses', '~> 1.40'
gem 'bootsnap', require: false
gem 'bootsnap', '>= 1.1.0', require: false
gem 'figaro', '~> 1.2.0'
gem 'jbuilder'
gem 'mimemagic', '~> 0.4.3'
gem 'passenger', '>= 5.3.2', require: 'phusion_passenger/rack_handler'
gem 'pg', '~> 1.3.0'
gem 'rails', '>= 6.0.3.1'
gem 'recaptcha', '~> 5.8', require: 'recaptcha/rails'
gem 'sassc', '~> 2.4'
gem 'sassc-rails'
gem 'simpleidn', '0.2.1' # For Punycode
gem 'uglifier'
gem 'passenger', '>= 5.3.2', require: 'phusion_passenger/rack_handler'

group :development do
gem 'listen', '>= 3.0.5', '< 3.8'
Expand All @@ -21,10 +21,10 @@ end
group :development, :test do
gem 'apparition'
gem 'capybara'
gem 'pry'
gem 'unicorn'
gem 'mina', '~> 1.2.4'
gem 'pry'
gem 'puma'
gem 'unicorn'
gem 'webmock'
end

Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ GEM
aws-sigv4 (~> 1.1)
aws-sigv4 (1.2.4)
aws-eventstream (~> 1, >= 1.0.2)
bootsnap (1.8.1)
msgpack (~> 1.0)
bootsnap (1.10.3)
msgpack (~> 1.2)
builder (3.2.4)
capybara (3.35.3)
addressable
Expand Down Expand Up @@ -129,7 +129,7 @@ GEM
mini_mime (1.1.1)
mini_portile2 (2.6.1)
minitest (5.14.4)
msgpack (1.4.2)
msgpack (1.4.5)
nio4r (2.5.8)
nokogiri (1.12.5)
mini_portile2 (~> 2.6.1)
Expand Down Expand Up @@ -239,7 +239,7 @@ PLATFORMS
DEPENDENCIES
apparition
aws-sdk-ses (~> 1.40)
bootsnap
bootsnap (>= 1.1.0)
capybara
figaro (~> 1.2.0)
jbuilder
Expand All @@ -262,4 +262,4 @@ DEPENDENCIES
webmock

BUNDLED WITH
2.1.4
2.3.8