add dockerfile

This commit is contained in:
24c02 2025-01-06 16:47:32 -05:00
parent a7a99a6399
commit 4279770a26

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM ruby:3.3.4
WORKDIR /code
COPY . /code
RUN bundle install
CMD ["bundle", "exec", "rackup", "--host", "0.0.0.0", "-p", "4567"]