diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..eef46fb --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM ruby:2.7 + +WORKDIR /app + +COPY Gemfile /app/ +RUN bundle install + +COPY . /app \ No newline at end of file