7 lines
180 B
Docker
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"]
|