fn-ruby/Dockerfile
fnkit d49781df6b
Some checks failed
/ deploy (push) Failing after 5s
fix: remove Gemfile.lock from Dockerfile
2026-02-17 17:07:13 +00:00

8 lines
194 B
Docker

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