FROM ruby:3.2-slim LABEL fnkit.fn="true" WORKDIR /app COPY Gemfile Gemfile.lock ./ RUN bundle install COPY . . CMD ["bundle", "exec", "functions-framework-ruby", "--target=hello"]