mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-25 21:28:40 -05:00
Add Dockerfile to make it easier to test changes to vmfloaty by using Docker
This commit is contained in:
parent
05a133fc72
commit
7b0a7679da
2 changed files with 18 additions and 0 deletions
12
.dockerignore
Normal file
12
.dockerignore
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
**/*.yml
|
||||
**/*.yaml
|
||||
**/*.md
|
||||
**/*example
|
||||
**/Dockerfile*
|
||||
Gemfile.lock
|
||||
Rakefile
|
||||
coverage
|
||||
spec
|
||||
examples
|
||||
scripts
|
||||
vendor
|
||||
6
Dockerfile
Normal file
6
Dockerfile
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue