From 841d56b698b6898b05def1cda860cb0e55804656 Mon Sep 17 00:00:00 2001 From: Eric Talevich <52723+etal@users.noreply.github.com> Date: Fri, 12 Apr 2024 14:02:45 -0700 Subject: [PATCH] docker: Copy the additional scripts into the image (closes #841) --- docker/Dockerfile => Dockerfile | 2 ++ 1 file changed, 2 insertions(+) rename docker/Dockerfile => Dockerfile (94%) diff --git a/docker/Dockerfile b/Dockerfile similarity index 94% rename from docker/Dockerfile rename to Dockerfile index c82f55db..f83c7d59 100644 --- a/docker/Dockerfile +++ b/Dockerfile @@ -9,6 +9,8 @@ RUN pip3 install cnvkit==0.9.10 --no-cache # Let matplotlib build its font cache RUN cnvkit.py version +COPY scripts/* /opt/conda/bin + ## USER CONFIGURATION, containers should not run as root RUN adduser --disabled-password --gecos '' ubuntu && chsh -s /bin/bash && mkdir -p /home/ubuntu USER ubuntu