no-as-a-service/Containerfile

10 lines
154 B
Text
Raw Permalink Normal View History

2025-05-13 07:58:31 +02:00
FROM ruby:3.4
WORKDIR /app
COPY app.rb .
RUN bundle init
RUN bundle add sinatra rack-accept rackup puma
EXPOSE 4567
CMD ["ruby", "app.rb", "-o", "::"]