mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-07-19 12:59:24 +00:00
6 lines
86 B
Docker
6 lines
86 B
Docker
FROM ruby
|
|
RUN gem install sinatra
|
|
ADD hasher.rb /
|
|
CMD ["ruby", "hasher.rb"]
|
|
EXPOSE 80
|