Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#41)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jul 15, 2024
1 parent eb6b5fc commit 6ca83e0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use a smaller base image for the build stage
FROM node:20.15.0-alpine AS build
FROM node:20.15.1-alpine AS build

WORKDIR /usr/src/app

Expand All @@ -10,7 +10,7 @@ RUN npm install
COPY . .

# Use a smaller base image for the runtime stage
FROM node:20.15.0-alpine
FROM node:20.15.1-alpine

WORKDIR /usr/src/app

Expand Down
9 changes: 5 additions & 4 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/ping": "^0.4.4",
"@types/ws": "^8.5.10"
"@types/ws": "^8.5.11"
}
}
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.15.0-alpine AS build
FROM node:20.15.1-alpine AS build

WORKDIR /usr/src/app

Expand All @@ -10,7 +10,7 @@ COPY . .

RUN npm run build

FROM node:20.15.0-alpine
FROM node:20.15.1-alpine

WORKDIR /usr/src/app

Expand Down

0 comments on commit 6ca83e0

Please sign in to comment.