Skip to content

Commit

Permalink
Feature/update (#156)
Browse files Browse the repository at this point in the history
* feat: update packages and node

* fix: redis url
  • Loading branch information
AndrewHanasiro authored Dec 14, 2024
1 parent 029b32c commit 3a8fe22
Show file tree
Hide file tree
Showing 6 changed files with 3,337 additions and 3,211 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.14.0
22.12
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
FROM node:20.14.0-slim AS dependency
FROM node:22.12.0-slim AS dependency
WORKDIR /app
COPY . .
RUN npm ci

FROM node:20.14.0-slim AS builder
FROM node:22.12.0-slim AS builder
WORKDIR /app
COPY . .
COPY --from=dependency /app/node_modules ./node_modules
RUN npm run build

FROM node:20.14.0-slim AS deploy
FROM node:22.12.0-slim AS deploy
WORKDIR /app
COPY --from=dependency /app/node_modules ./node_modules
COPY --from=builder /app/build ./build
Expand Down
Loading

0 comments on commit 3a8fe22

Please sign in to comment.