require "sct/docker/docker" module Sct class Php < Docker # Configure the Yarn command def self.config self.setImage("eu.gcr.io/dev-pasc-vcdm/proactive-base:latest", true) self.setPwdAsVolume("/var/www") self.setCurrentUserAndGroup() self.setEntrypoint("php") end end end