Skip to content

Update Dockerfile - remove copy static/ build step #117

Update Dockerfile - remove copy static/ build step

Update Dockerfile - remove copy static/ build step #117

Workflow file for this run

name: Dockerfile Linting
# Run the test suite on pushes (incl. merges) to master and dev
# Run the test suite when a PR is opened, pushed to, or reopened
on:
push:
branches:
- dev
- master
paths:
- deploy/docker/seqr/Dockerfile
- hail_search/deploy/Dockerfile
- .hadolint.yaml
- .docker-compose.yaml
- .github/workflows/docker-lint.yaml
pull_request:
types: [opened, synchronize, reopened]
branches:
- dev
- master
paths:
- deploy/docker/seqr/Dockerfile
- hail_search/deploy/Dockerfile
- .hadolint.yaml
- .docker-compose.yaml
- .github/workflows/docker-lint.yaml
jobs:
hadolint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate docker compose
run: docker-compose -f docker-compose.yml config
- uses: hadolint/[email protected]
with:
dockerfile: deploy/docker/seqr/Dockerfile
- uses: hadolint/[email protected]
with:
dockerfile: hail_search/deploy/Dockerfile