We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05a133f commit 7b0a767Copy full SHA for 7b0a767
.dockerignore
@@ -0,0 +1,12 @@
1
+**/*.yml
2
+**/*.yaml
3
+**/*.md
4
+**/*example
5
+**/Dockerfile*
6
+Gemfile.lock
7
+Rakefile
8
+coverage
9
+spec
10
+examples
11
+scripts
12
+vendor
Dockerfile
@@ -0,0 +1,6 @@
+FROM ruby:2.7
+
+COPY ./ ./
+RUN apt-get update && apt-get install -y less
+RUN gem install bundler && bundle install && gem build vmfloaty.gemspec && gem install vmfloaty*.gem
0 commit comments