mirror of
https://github.com/puppetlabs/vmfloaty.git
synced 2026-01-26 05:28:40 -05:00
6 lines
188 B
Docker
6 lines
188 B
Docker
FROM ruby:3.1.1-slim-buster
|
|
|
|
COPY ./ ./
|
|
|
|
RUN apt-get update && apt-get install -y less
|
|
RUN gem install bundler && bundle install && gem build vmfloaty.gemspec && gem install vmfloaty*.gem
|