diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..5c9b0d3 --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,8 @@ + +FROM --platform=linux/amd64 ghcr.io/talusbio/nf-encyclopedia:latest +RUN apt update && apt install default-jdk-headless git docker -y +ENV JAVA_HOME=/usr/lib/jvm/java-1*-openjdk-amd64 +ENV PATH="/usr/bin:$PATH" +RUN export -n _JAVA_OPTIONS +RUN unset _JAVA_OPTIONS ; cd /bin && curl -s https://get.nextflow.io | bash + diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..e5af2fd --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,8 @@ +{ + "build": { "dockerfile": "Dockerfile" }, + + "customizations": { + "vscode": {} + } +} +