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