From 82fe356b278aca4e6f1c30dbb1d6a48c496ecf51 Mon Sep 17 00:00:00 2001 From: Jason Garber Date: Thu, 19 Jan 2023 14:42:13 -0500 Subject: [PATCH] Enable YJIT and remove Bundler ENV vars --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 17dc5e5..ad37607 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ ################################################################################ FROM ruby:3.2.0-alpine3.17 AS base-stage -ENV BUNDLE_JOBS=10 \ - BUNDLE_RETRIES=5 +# Silence Ruby deprecation warnings and enable YJIT. +ENV RUBYOPT="-W:no-deprecated --yjit" EXPOSE 8080