-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
2 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: build-image | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- container/Containerfile | ||
- container/VERSION | ||
- environment.yml | ||
jobs: | ||
build-image: | ||
name: build-image | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Clean up Ubuntu | ||
run: | | ||
sudo rm -rf /usr/share/dotnet | ||
sudo rm -rf /opt/ghc | ||
sudo rm -rf "/usr/local/share/boost" | ||
sudo rm -rf "$AGENT_TOOLSDIRECTORY" | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Get VERSION | ||
run: echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV | ||
- name: Build Image | ||
id: build-image | ||
uses: redhat-actions/buildah-build@v2 | ||
with: | ||
image: wri-cities-cif-environment | ||
tags: latest ${{ env.VERSION }} ${{ github.sha }} | ||
containerfiles: | | ||
./Containerfile | ||
- name: Push image to container registry | ||
id: push-image-to-registry | ||
uses: redhat-actions/push-to-registry@v2 | ||
with: | ||
image: ${{ steps.build-image.outputs.image }} | ||
tags: ${{ steps.build-image.outputs.tags }} | ||
registry: ghcr.io/wri | ||
username: ${{ secrets.REGISTRY_USER }} | ||
password: ${{ secrets.REGISTRY_PASSWORD }} | ||
- name: Print image url | ||
run: echo "Image pushed to ${{ steps.push-image-to-registry.outputs.registry-paths }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM condaforge/miniforge3:latest | ||
LABEL maintainer="Chris Rowe" | ||
WORKDIR /src/ | ||
COPY environment.yml . | ||
RUN true && \ | ||
mamba env create -f environment.yml && \ | ||
echo "source activate cities-cif" > "$HOME/.bashrc" | ||
ENV PATH "/src:/opt/conda/envs/cities-cif/bin:$PATH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.1 |