Skip to content
New issue

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

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

Already on GitHub? # to your account

chore: Removed unused code and bumped bundler version #111

Merged
merged 2 commits into from
Mar 12, 2022
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ FROM ruby:3.0.3-alpine3.13

LABEL maintainer="Tonye Jack <jtonye@ymail.com>"

RUN apk add bash git
RUN apk add bash

COPY Gemfile* ./

RUN apk add --no-cache \
--virtual .gem-installdeps \
build-base \
&& gem install bundler --version 2.2.16 \
&& gem install bundler --version 2.3.9 \
&& bundle config set --local system 'true' \
&& bundle install \
&& gem uninstall bundler \
Expand Down