Skip to content

Updated README.md

Updated README.md #17

Workflow file for this run

name: Build Docker Image
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Build the Docker image
run: docker build . --file Dockerfile --tag pyramid-prepare-data
# Testing removed temporarily.
# To test successfully, an appropriate dataset will need to be downloaded from DAFNI
# and mounted properly into the Docker container.
#- name: test
# run: docker run -v "$(pwd)/data:/data" pyramid-prepare-data