Dockerfile
FROM ruby:3.3.6RUN apt-get update -qqRUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -RUN curl -sL https://deb.nodesource.com/setup_16.x | bashRUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.listRUN apt-get install -y nodejsRUN apt-get update && apt-get install -y yarnRUN mkdir /BSDSecWORKDIR /BSDSecADD Gemfile Gemfile.lock /BSDSec/RUN bundle update --bundlerRUN bundle installADD package.json yarn.lock /BSDSec/RUN yarnADD . /BSDSec