There's no existing build for that, but one could be made for the desktop build without too much eff
There's no existing build for that, but one could be made for the desktop build without too much effort
COPY command based on $image_name to copy certain files for specific image. Only problem is that I have more images than folders to copy. So at some point builds will fail as they cannot copy a non existent folder. Do you maybe have a good solution for that? My thoughts where to maybe copy them first to /tmp and then copy them via the RUN if grep image_name is "silverblue" then cp /tmp/siverblue / because /tmp is cleand up any way. Would something like that make sense?COPY system_files/desktop/${BASE_IMAGE_NAME} / first as that was a perfect solution. until you build images that you don't have a folder for, then everything bailes outCOPY$image_name/tmp/tmpRUN if grep image_name is "silverblue" then cp /tmp/siverblue /COPY system_files/desktop/${BASE_IMAGE_NAME} /