Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: updated dependencies to remove critical issues #126

Merged
merged 7 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: CI tests, image build and push tag to cache for main or branch
uses: whoan/docker-build-with-cache-action@v6
uses: whoan/docker-build-with-cache-action@v8
with:
username: ${{ env.BOT_USERNAME }}
password: '${{ env.BOT_TOKEN }}'
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.20.4
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# --------------- Dev stage for developers to override sources
FROM node:15-alpine as dev
FROM node:18.20.4-alpine as dev
ARG NPM_TOKEN
RUN test -n "$NPM_TOKEN"

Expand Down Expand Up @@ -34,7 +34,7 @@ FROM dev as clean
# below command removes the packages specified in devDependencies and set NODE_ENV to production
RUN npm prune --production
# --------------- Production stage
FROM node:15-alpine AS prod
FROM node:18.20.4-alpine AS prod

COPY --from=dev /usr/local/bin/node /usr/bin/
COPY --from=dev /usr/lib/libgcc* /usr/lib/
Expand Down
Loading