Skip to content

Commit

Permalink
feat: Add minimal docker image (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
lsetiawan authored Jul 23, 2024
1 parent 48f2ea5 commit c79c73f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
strategy:
fail-fast: false
matrix:
IMAGE: [base-ssec-project,project-ans-modeling,tutorial-scipy-2024]
IMAGE: [minimal,base-ssec-project,project-ans-modeling,tutorial-scipy-2024]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# ONBUILD instructions in base-image/Dockerfile are used to
# perform certain actions based on the presence of specific
# files (such as conda-linux-64.lock, start) in this repo.
# Refer to the base-image/Dockerfile for documentation.
ARG SSEC_BASE_IMAGE_TAG=latest
FROM ghcr.io/uw-ssec/base-image:${SSEC_BASE_IMAGE_TAG}
3 changes: 3 additions & 0 deletions minimal/apt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
apt-utils
git
vim
8 changes: 8 additions & 0 deletions minimal/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: minimal
channels:
- conda-forge
- nodefaults
dependencies:
- python>=3.12
- conda-lock
- pip

0 comments on commit c79c73f

Please sign in to comment.