Skip to content

Commit

Permalink
Ignore SC1091 for shellcheck on Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Dec 4, 2024
1 parent ae99991 commit 2c92812
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ runs:
run: |
cd ${{ inputs.dockerfile-location }}
[ -d "./bin" ] && shellcheck --external-sources --exclude=SC1091 ./bin/*
shellcheck --external-sources --exclude=SC2148 ./Dockerfile
shellcheck --external-sources --exclude=SC2148 --exclude=SC1091 ./Dockerfile
shell: bash
2 changes: 1 addition & 1 deletion docker/tna-python-dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ COPY --chown=app lib/* /home/app/
# fixing both Python and JS/CSS code
# ==========================================
RUN python -m pip install --no-cache-dir --quiet black==24.10.0 flake8==7.1.1 isort==5.13.2; \
. /home/app/.nvm/nvm.sh; \
. "$HOME/.nvm/nvm.sh"; \
npm install -g [email protected] [email protected] [email protected] [email protected] [email protected]

CMD ["dev"]

0 comments on commit 2c92812

Please sign in to comment.