fn-ruby/Dockerfile
fnkit 1ad4c7ba14
All checks were successful
/ deploy (push) Successful in 50s
fix: use full ruby image for native extensions
2026-02-17 17:17:44 +00:00

8 lines
189 B
Docker

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