-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dockerfile
35 lines (33 loc) · 1.51 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# FROM python: "3.10-alpine"
FROM continuumio/miniconda3
LABEL maintainer="Hector M. Sanchez C. <[email protected]>"
###############################################################################
# Setup Structure
###############################################################################
RUN apt-get update \
&& apt-get install nano \
&& apt-get install gcc -y \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir MGSurvE
WORKDIR /MGSurvE
###############################################################################
# Copy Requirements and License
###############################################################################
COPY ./conda/requirements.yml .
COPY LICENSE .
###############################################################################
# Copy Paper and Demo Experiments Files
###############################################################################
COPY ./MGSurvE/ .
###############################################################################
# Install Packages
###############################################################################
RUN conda update -n base -c defaults conda \
&& conda config --set offline false \
&& conda config --add channels conda-forge \
&& conda config --add channels bioconda \
&& conda install -n base conda-libmamba-solver \
&& conda config --set solver libmamba \
&& conda install gdal fiona pyproj cartopy libpysal -y \
&& conda install -c conda-forge deap nodejs osmnx basemap-data-hires -y \
&& pip install MGSurvE