mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-04 02:10:23 +00:00
8 lines
146 B
Docker
8 lines
146 B
Docker
FROM ruby:alpine
|
|
RUN apk add --update build-base
|
|
RUN gem install sinatra
|
|
RUN gem install thin
|
|
ADD hasher.rb /
|
|
CMD ["ruby", "hasher.rb"]
|
|
EXPOSE 80
|