Skip to content
Open
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
1 change: 1 addition & 0 deletions .depcheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ ignores: [
'multer',
'pg',
'expo',
'tsc-native'
]
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# syntax=docker/dockerfile:1.26
FROM node:24-bookworm AS builder

RUN npm install -g npm@12.0.1

WORKDIR /veritable-encryption-service

COPY package*.json ./
Expand All @@ -12,6 +14,8 @@ RUN npm run build

FROM node:24-bookworm AS modules

RUN npm install -g npm@12.0.1

WORKDIR /veritable-encryption-service

COPY package*.json ./
Expand All @@ -20,6 +24,8 @@ RUN npm ci --production

FROM node:24-bookworm-slim AS service

RUN npm install -g npm@12.0.1

ARG NODE_ENV=production
ENV NODE_ENV=${NODE_ENV}
WORKDIR /veritable-encryption-service
Expand Down
Loading
Loading