forked from openclimatefix/graph_weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
42 lines (30 loc) · 1.42 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
35
36
37
38
39
40
41
42
FROM ubuntu:latest
ENV CONDA_ENV_NAME=graph
ENV PYTHON_VERSION=3.10
# Basic setup
RUN apt update && apt install -y bash \
build-essential \
git \
curl \
ca-certificates \
wget \
libaio-dev \
&& rm -rf /var/lib/apt/lists
# Install Miniconda and create main env
ADD https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh miniconda3.sh
RUN /bin/bash miniconda3.sh -b -p /conda \
&& echo export PATH=/conda/bin:$PATH >> .bashrc \
&& rm miniconda3.sh
ENV PATH="/conda/bin:${PATH}"
RUN git clone https://github.com/openclimatefix/graph_weather.git && mv graph_weather/ gw/ && cd gw/ && mv * .. && rm -rf gw/
RUN conda update -n base -c defaults conda && conda env create -f environment.yml
# Switch to bash shell
SHELL ["/bin/bash", "-c"]
# Set ${CONDA_ENV_NAME} to default virutal environment
RUN echo "source activate ${CONDA_ENV_NAME}" >> ~/.bashrc
# Cp in the development directory and install
RUN source activate ${CONDA_ENV_NAME} && pip install -e .
# Make RUN commands use the new environment:
SHELL ["conda", "run", "-n", "graph", "/bin/bash", "-c"]
# Example commnad that can be used, need to set API_KEY, API_SECRET and SAVE_DIR
CMD ["conda", "run", "-n", "graph", "python", "-u", "train/pl_graph_weather.py", "--gpus", "16", "--hidden", "64", "--num-blocks", "3", "--batch", "16"]