-
Notifications
You must be signed in to change notification settings - Fork 5
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
1 parent
d3b80f7
commit 75a178a
Showing
6 changed files
with
58 additions
and
26 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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM ruby:3.2-alpine3.18 | ||
|
||
RUN apk add --update ca-certificates bash && update-ca-certificates && rm -rf /var/cache/apk/* | ||
RUN apk update && apk add --no-cache build-base | ||
|
||
RUN set -ex \ | ||
&& apk add --no-cache --virtual .gem-builddeps \ | ||
ruby-dev build-base libressl-dev | ||
|
||
COPY Gemfile . | ||
COPY eventq.gemspec . | ||
COPY EVENTQ_VERSION . | ||
|
||
RUN bundle install --no-cache \ | ||
&& apk del .gem-builddeps |
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,14 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in eventq.gemspec | ||
gemspec | ||
|
||
|
||
gem 'json', '~> 2' | ||
gem 'redlock', '~> 1' | ||
|
||
platforms :ruby do | ||
gem 'oj', '3.6.10' | ||
gem 'openssl', '2.1.2' | ||
gem 'bunny' | ||
gem 'oj' | ||
gem 'openssl' | ||
end |
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
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
This file was deleted.
Oops, something went wrong.