Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Commit

Permalink
fix: address blocking linter issues
Browse files Browse the repository at this point in the history
Signed-off-by: George Vauter <[email protected]>
  • Loading branch information
gvauter committed Aug 8, 2024
1 parent 65aad4a commit 2171406
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- name: MegaLinter
id: ml
uses: oxsecurity/megalinter@v7
uses: oxsecurity/megalinter@5199c6377b4cb7faff749a1971636f3343db9fe6 # pin@v7
env:
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/ubi AS build
FROM registry.access.redhat.com/ubi8/ubi:latest AS build

WORKDIR /demo

Expand All @@ -9,7 +9,7 @@ ENV BIN_DIR=/demo/bin/ PATH=$PATH:BIN_DIR

RUN ./scripts/install.sh build

FROM registry.access.redhat.com/ubi8/python-38 AS demo
FROM registry.access.redhat.com/ubi8/python-38:latest AS demo

COPY requirements.txt requirements.txt

Expand All @@ -25,4 +25,4 @@ USER root

RUN ./scripts/install.sh install_demo_utils

USER 1001
USER 1001

0 comments on commit 2171406

Please sign in to comment.