./lib/rubypitaya/app-template/docker/dev/Dockerfile in rubypitaya-3.3.7 vs ./lib/rubypitaya/app-template/docker/dev/Dockerfile in rubypitaya-3.4.0

- old
+ new

@@ -1,6 +1,6 @@ -FROM ruby:3.0.2-slim +FROM ruby:3.0.3-slim ENV LANG=C.UTF-8 ENV LC_ALL=C.UTF-8 RUN apt update && \ @@ -16,9 +16,10 @@ COPY Gemfile Gemfile.lock ./ RUN bundle config --global jobs 4 && \ bundle config --global set clean 'true' \ bundle config --global git.allow_insecure true && \ + bundle config set path './vendor/bundle' && \ bundle install COPY . . ENTRYPOINT ["./docker/entrypoint.sh"]