Skip to content

Commit 8c962fb

Browse files
fix(devcontainer): Add conda ToS accept to Dockerfile for pkgs/r
1 parent ee9ad5e commit 8c962fb

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,13 @@ RUN apt-get update && apt-get install -y \
2020
mysql-server \
2121
&& rm -rf /var/lib/apt/lists/*
2222

23-
# Download and install Miniconda
24-
# RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda.sh && \
25-
# /bin/bash /tmp/miniconda.sh -b -p /opt/conda && \
26-
# rm /tmp/miniconda.sh && \
27-
# conda clean --all -f -y && \
28-
# conda install -n base libarchive -c main --force-reinstall --solver classic
29-
3023
# Download and install Miniconda
3124
RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda.sh && \
3225
/bin/bash /tmp/miniconda.sh -b -p /opt/conda && \
3326
rm /tmp/miniconda.sh && \
3427
conda config --set auto_update_conda false && \
3528
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main && \
29+
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r && \
3630
conda clean --all -f -y && \
3731
conda install -n base libarchive -c main --force-reinstall --solver classic
3832

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![License: CC BY-NC-ND 4.0](https://img.shields.io/badge/License-CC%20BY--NC--ND%204.0-lightgrey.svg)](https://creativecommons.org/licenses/by-nc-nd/4.0/)
22

3-
# Datajoint Book
3+
# DataJoint Book
44

55
Welcome to the [DataJoint Book](https://dimitri-yatsenko.github.io/datajoint-book), a comprehensive
66
introduction to relational database programming in the context of scientific computing and data science.

0 commit comments

Comments
 (0)