fix: remove Gemfile.lock from Dockerfile
Some checks failed
/ deploy (push) Failing after 5s

This commit is contained in:
fnkit 2026-02-17 17:07:13 +00:00
parent e22e58a944
commit d49781df6b

View file

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