* Added support for Ruby v2 Specialization * Added ruby v2 example with builder code
12 lines
160 B
Docker
12 lines
160 B
Docker
FROM ruby:2.6.1-alpine3.9
|
|
|
|
RUN apk update
|
|
RUN apk add --no-cache build-base
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN bundle install
|
|
|
|
ENTRYPOINT ["ruby"]
|
|
CMD ["server.rb"]
|