We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cd4410 commit ea8084fCopy full SHA for ea8084f
2 files changed
Dockerfile
@@ -1,17 +1,18 @@
1
-FROM jupyter/minimal-notebook:python-3.10
+FROM jupyter/minimal-notebook:python-3.11
2
3
# Installing package for libmamba
4
USER root
5
RUN apt-get update && \
6
- apt install -y \
+ apt-get install -y \
7
libfmt-dev
8
USER jovyan
9
10
# Set up conda
11
RUN conda update conda
12
RUN conda config --remove channels conda-forge
13
RUN conda config --add channels conda-forge
14
-RUN conda config --set channel_priority strict
+#RUN conda config --set channel_priority strict
15
+#RUN conda config --set solver classic
16
17
# Create environment
18
COPY environment.yml /home/jovyan/
environment.yml
@@ -1,7 +1,7 @@
name: earth-analytics-python
channels:
- - conda-forge
- defaults
+ - conda-forge
dependencies:
- python=3.11
0 commit comments