Skip to content

Commit

Permalink
updated the PR
Browse files Browse the repository at this point in the history
  • Loading branch information
rmassei committed Feb 14, 2025
1 parent 79723b1 commit 3140a6c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,17 @@ jobs:
singularity pull --dir /tmp docker://continuumio/anaconda3
singularity pull --dir /tmp docker://rocker/tidyverse
fi
# Set up the lambda-miner database
- name: Build Docker image (from app/ directory)
run: |
docker build -t lmdb_image -f .github/lambdaminer/Dockerfile .github/lambdaminer
- name: Start and verify Docker container
run: |
docker run -p 5400:5400 --name lmdb_container -d lmdb_image
sleep 10 # wait for the container to start
docker exec -i lmdb_container psql -U lmdb_adm -d lmdb -c "SELECT * FROM public.instrument;"
# Start OMERO
- name: Start OMERO
Expand Down

0 comments on commit 3140a6c

Please sign in to comment.