Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Make pipeline-catalog submodule available to built Docker image #373

Merged
merged 5 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,31 @@ bagelbids.egg-info
.eggs/**/*
.eggs

.editorconfig
**/.git
**/.github
**/.gitignore
**/.vscode
**/coverage
**/.env
**/.aws
**/.ssh
Dockerfile
README.md
docker-compose.yml
**/.DS_Store
**/venv
**/env
Dockerfile

bids-examples
# other configuration files and scripts
.autorc
.pre-commit-config.yaml
generate_nb_vocab_file.py

# documentation
CHANGELOG.md
CITATION.cff
LICENSE
README.md

# submodules used for testing
bids-examples
neurobagel_examples
2 changes: 2 additions & 0 deletions .github/workflows/build_docker_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
alyssadai marked this conversation as resolved.
Show resolved Hide resolved

- name: Login to Docker Hub
uses: docker/login-action@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build_docker_on_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
-
name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
-
# The release event is a superset of the push tag event,
# so we expect two tags to be generated by docker/metadata-action
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM python:3.10-slim-buster

WORKDIR /app
COPY . /app/src

# To have a deterministic build, we
# 1. install the environment from our lockfile
RUN pip install -r /app/src/requirements.txt
Expand Down
Loading