Skip to content

Commit ea8084f

Browse files
author
earthlab
committed
Chaning channel order and installing libmft-dev
1 parent 2cd4410 commit ea8084f

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
FROM jupyter/minimal-notebook:python-3.10
1+
FROM jupyter/minimal-notebook:python-3.11
22

33
# Installing package for libmamba
44
USER root
55
RUN apt-get update && \
6-
apt install -y \
6+
apt-get install -y \
77
libfmt-dev
88
USER jovyan
99

1010
# Set up conda
1111
RUN conda update conda
1212
RUN conda config --remove channels conda-forge
1313
RUN conda config --add channels conda-forge
14-
RUN conda config --set channel_priority strict
14+
#RUN conda config --set channel_priority strict
15+
#RUN conda config --set solver classic
1516

1617
# Create environment
1718
COPY environment.yml /home/jovyan/

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: earth-analytics-python
22
channels:
3-
- conda-forge
43
- defaults
4+
- conda-forge
55

66
dependencies:
77
- python=3.11

0 commit comments

Comments
 (0)