From 1660e7e14ec14a8960541b0d02170faf32a260c3 Mon Sep 17 00:00:00 2001 From: Jessica Nash Date: Wed, 26 Jun 2024 12:45:11 -0400 Subject: [PATCH] change dockerfile to trigger codespace build --- .devcontainer/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 351a829..f4741c7 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,6 +3,7 @@ FROM mcr.microsoft.com/devcontainers/anaconda:0-3 # Copy environment.yml (if found) to a temp location so we update the environment. Also # copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists. COPY environment.yml* .devcontainer/noop.txt /tmp/conda-tmp/ + RUN if [ -f "/tmp/conda-tmp/environment.yml" ]; then umask 0002 && /opt/conda/bin/conda env update -n base -f /tmp/conda-tmp/environment.yml; fi \ && rm -rf /tmp/conda-tmp