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