Skip to content

Commit

Permalink
Fix them all!
Browse files Browse the repository at this point in the history
  • Loading branch information
gabmontes committed Mar 4, 2025
1 parent 04ec910 commit 5abf34a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/docker-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,8 @@ jobs:
- uses: aquasecurity/[email protected]
with:
exit-code: 1
format: json
ignore-unfixed: true
image-ref: ${{ github.repository }}:${{ github.sha }}
list-all-pkgs: true
severity: HIGH,CRITICAL
strategy:
matrix:
Expand Down
3 changes: 3 additions & 0 deletions token-prices/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM node:20.18.3-alpine

ENV NODE_ENV=production

# Fix the cross-spawn vulnerability in the preinstalled npm version
RUN npm i --global [email protected]

WORKDIR /app

COPY package*.json .
Expand Down
3 changes: 3 additions & 0 deletions token-prices/cron/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ FROM node:20.18.3-alpine

ENV NODE_ENV=production

# Fix the cross-spawn vulnerability in the preinstalled npm version
RUN npm i --global [email protected]

WORKDIR /app

COPY package*.json .
Expand Down
10 changes: 10 additions & 0 deletions token-prices/notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Notes

```js
// const other = [
// 'bedrock-btc',
// 'ether-fi-staked-btc',
// 'lombard-staked-btc'
// ]
// const notfound = ['enzoBTC', 'ibtc', 'obtc', 'ubtc']
```

0 comments on commit 5abf34a

Please sign in to comment.