@manyos/smileconnect-api 1.64.1 → 1.64.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +2 -2
- package/docs/releases.md +6 -0
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
### STAGE 1: Build ###
|
|
2
2
|
|
|
3
3
|
# We label our stage as 'builder'
|
|
4
|
-
FROM node:
|
|
4
|
+
FROM node:21 as builder
|
|
5
5
|
ARG NPM_TOKEN
|
|
6
6
|
COPY package.json package-lock.json ./
|
|
7
7
|
|
|
@@ -19,7 +19,7 @@ COPY . .
|
|
|
19
19
|
EXPOSE 3000
|
|
20
20
|
|
|
21
21
|
RUN groupadd -g 999 appuser && \
|
|
22
|
-
useradd -r -u 999 -g appuser appuser
|
|
22
|
+
useradd -r -s /bin/false --no-create-home -u 999 -g appuser appuser
|
|
23
23
|
USER appuser
|
|
24
24
|
|
|
25
25
|
CMD npm start
|
package/docs/releases.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Release Notes
|
|
2
2
|
|
|
3
3
|
## API
|
|
4
|
+
### 1.64.3 - 20.10.23
|
|
5
|
+
Update node.js to v21.
|
|
6
|
+
|
|
7
|
+
### 1.64.1 - 18.10.23
|
|
8
|
+
Fix error in Appconfig Requests when LOG_REQUEST=true
|
|
9
|
+
|
|
4
10
|
### 1.64.0 - 19.07.23
|
|
5
11
|
Introduce Enhanced Logging for Tickets. More objects in later releases.
|
|
6
12
|
|