Add docker bits

This commit is contained in:
Ryan W
2021-09-26 14:32:21 -07:00
parent ef4fac96a7
commit 63a398fc7f
3 changed files with 52 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM ruby:3.0.2-bullseye
WORKDIR /usr/src/app
ENTRYPOINT ["./entrypoint.sh"]
EXPOSE 3000
CMD ["bundle", "exec", "rails", "s", "-b", "0.0.0.0"]