Skip to content

Commit a45f6bf

Browse files
committed
Temporary changes to A) use this branch to build the docker container, and B) push to dockerhub to ensure no surprises down the road.
1 parent 26d3602 commit a45f6bf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build_and_push_docker_latest.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Build and push Docker container to DockerHub
22

33
on:
44
push:
5-
branches:
6-
# Only build containers for DockerHub when pushing to main
7-
- "main"
5+
# branches:
6+
# # Only build containers for DockerHub when pushing to main
7+
# - "main"
88

99
env:
1010
LATEST_TAG: dtcenter/ccpp-scm:latest

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ ENV w3emc_ROOT /comsoftware/nceplibs
7171

7272
# Obtain CCPP SCM source code and static data, build code
7373
RUN cd /comsoftware \
74-
&& git clone --recursive -b main https://github.com/NCAR/ccpp-scm \
74+
&& git clone --recursive -b feature/v7_online_tutorial_updates https://github.com/mkavulich/ccpp-scm \
7575
&& cd /comsoftware/ccpp-scm/ \
7676
&& ./contrib/get_all_static_data.sh \
7777
&& ./contrib/get_thompson_tables.sh \
@@ -102,5 +102,5 @@ ENV VIRTUAL_ENV=~/.venv
102102
RUN python3 -m venv $VIRTUAL_ENV
103103
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
104104
# Need numpy version below 2.0 for now
105-
RUN pip install "numpy<2"
105+
RUN pip3 install "numpy<2"
106106
RUN pip3 install f90nml==1.4.4 netcdf4==1.6.5

0 commit comments

Comments
 (0)