We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a26cea4 commit 492f0eaCopy full SHA for 492f0ea
Dockerfile
@@ -0,0 +1,21 @@
1
+FROM ruby:latest
2
+
3
+WORKDIR /src
4
5
+COPY . .
6
7
+COPY Gemfile Gemfile.lock ./
8
9
+RUN gem install bundler
10
11
+RUN bundle install --full-index
12
13
+RUN rake install
14
15
+RUN echo 'alias build="gem build bigid_auth.gemspec"' >> ~/.bashrc
16
17
+RUN echo 'alias release="rake release"' >> ~/.bashrc
18
19
+RUN echo 'alias release_github="gem push --key github --host https://rubygems.pkg.github.com/quasar-flash "' >> ~/.bashrc
20
21
+CMD ["irb"]
docker-compose.yml
@@ -0,0 +1,8 @@
+version: '3.9'
+services:
+ web:
+ build: .
+ stdin_open: true
+ tty: true
+ volumes:
+ - .:/src
0 commit comments