fix: dockerfile entrypoint commandº

This commit is contained in:
Bruno Paz 2019-10-02 21:58:07 +01:00
parent 8a2c585109
commit dfc8504999
2 changed files with 5 additions and 2 deletions

View file

@ -64,7 +64,9 @@ jobs:
needs: test
steps:
- uses: actions/checkout@v1
- uses: ./
- name: Run integration test
uses: ./
with:
dockerfile: testdata/Dockerfile

View file

@ -2,4 +2,5 @@ FROM hadolint/hadolint:v1.17.2
COPY LICENSE README.md /
CMD ["hadolint"]
ENTRYPOINT [ "hadolint" ]