initial
This commit is contained in:
commit
871d8975ca
13 changed files with 653 additions and 0 deletions
10
Containerfile
Normal file
10
Containerfile
Normal 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", "::"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue