From dbd2436233ac29b6ab7c0ae7d9cea83ea42583f1 Mon Sep 17 00:00:00 2001 From: Florian Wuennemann Date: Tue, 19 Dec 2023 16:18:56 +0000 Subject: [PATCH] Add back local scripts and repo content. --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 539710f..fc10bbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,4 +22,10 @@ SHELL ["/bin/bash", "-c"] # Activate the conda environment by default when starting a shell # This will ensure that the conda environment's python is used RUN echo "source activate molkart_local" > ~/.bashrc -ENV BASH_ENV ~/.bashrc \ No newline at end of file +ENV BASH_ENV ~/.bashrc + +# Set the working directory +WORKDIR /local + +# Copy the current directory contents into the container at /local +COPY . . \ No newline at end of file