This commit is contained in:
Ole-Morten Duesund 2025-05-13 07:58:31 +02:00
commit 871d8975ca
13 changed files with 653 additions and 0 deletions

10
Containerfile Normal file
View file

@ -0,0 +1,10 @@
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", "::"]