fn-ruby/Dockerfile
fnkit e22e58a944
Some checks failed
/ deploy (push) Failing after 6s
initial commit - ruby function
2026-02-17 16:45:13 +00:00

7 lines
180 B
Docker

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"]