-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from hdr-bgnn/release
Make code workflow-compatible, including automated container build
- Loading branch information
Showing
5 changed files
with
211 additions
and
40 deletions.
There are no files selected for viewing
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,43 @@ | ||
name: Create and publish a Docker image | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
jobs: | ||
build-and-push-image: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Log in to the Container registry | ||
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc | ||
with: | ||
context: . | ||
build-args: | | ||
DATAVERSE_API_TOKEN=${{ secrets.DATAVERSE_API_TOKEN }} | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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,39 @@ | ||
FROM ghcr.io/imageomics/dataverse-access:1 as model_fetcher | ||
ARG DATAVERSE_API_TOKEN | ||
ENV DATAVERSE_URL=https://datacommons.tdai.osu.edu/ | ||
ENV MODEL_DV_DOI=doi:10.5072/FK2/MMX6FY | ||
|
||
# Download model_final.pth | ||
RUN mkdir -p /model \ | ||
&& dva download $MODEL_DV_DOI /model | ||
|
||
FROM python:3.8.10-slim-buster | ||
LABEL "org.opencontainers.image.authors"="John Bradley <[email protected]>" | ||
LABEL "org.opencontainers.image.description"="Tool to extract metadata information from fish images" | ||
|
||
# Install build requirements | ||
RUN apt-get update \ | ||
&& apt-get install -y python3-dev git gcc g++ libgl1-mesa-glx libglib2.0-0 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Upgrade pip and install pipenv | ||
RUN pip install --upgrade pip | ||
RUN pip install pipenv | ||
|
||
WORKDIR /pipeline | ||
|
||
# ADD scripts in /pipeline to the PATH | ||
ENV PATH="/pipeline:${PATH}" | ||
|
||
COPY Pipfile /pipeline/. | ||
|
||
# Install requirements | ||
RUN pipenv install --skip-lock --system && pipenv --clear | ||
|
||
COPY config /pipeline/config | ||
COPY --from=model_fetcher /model/model_final.pth \ | ||
/pipeline/output/enhanced/model_final.pth | ||
|
||
COPY gen_metadata.py /pipeline | ||
|
||
CMD echo "python gen_metadata.py" |
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 |
---|---|---|
|
@@ -31,4 +31,4 @@ pycallgraph = "*" | |
[dev-packages] | ||
|
||
[requires] | ||
python_version = "3.10" | ||
python_version = "3.8.10" |
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
Oops, something went wrong.