Added dockerfile

This commit is contained in:
Luiz F Picolo 2021-10-04 22:34:09 -04:00
parent 79da8fb6b8
commit 19dcb4807f
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

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