@social-mail/social-mail-web-server 1.9.142 → 1.9.143
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/package.json +2 -2
- package/Test.Dockerfile +0 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@social-mail/social-mail-web-server",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.143",
|
|
4
4
|
"description": "## Phase 1",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-sdk/client-s3": "^3.990.0",
|
|
24
24
|
"@azure/storage-blob": "^12.31.0",
|
|
25
|
-
"@entity-access/entity-access": "^1.0.
|
|
25
|
+
"@entity-access/entity-access": "^1.0.543",
|
|
26
26
|
"@entity-access/server-pages": "^1.1.608",
|
|
27
27
|
"@parse/node-apn": "^6.5.0",
|
|
28
28
|
"@paypal/paypal-server-sdk": "^2.1.0",
|
package/Test.Dockerfile
DELETED
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# Version 1
|
|
2
|
-
FROM node:24-alpine
|
|
3
|
-
RUN apk add --no-cache tini
|
|
4
|
-
RUN apk add --no-cache openssl
|
|
5
|
-
RUN apk add 7zip
|
|
6
|
-
RUN apk update \
|
|
7
|
-
&& apk add \
|
|
8
|
-
bind \
|
|
9
|
-
bind-tools \
|
|
10
|
-
bind-dnssec-tools
|
|
11
|
-
|
|
12
|
-
VOLUME /var/lib/clamav
|
|
13
|
-
VOLUME /data
|
|
14
|
-
VOLUME /cache
|
|
15
|
-
|
|
16
|
-
ENV FILE_CONVERSION_SERVER_PORT=/fcs/sockets/fcs.sock
|
|
17
|
-
ENV LOCAL_CACHE_PORT=/fcs/local-cache.sock
|
|
18
|
-
ENV HOST=0.0.0.0
|
|
19
|
-
ENV SELF_HOST=true
|
|
20
|
-
EXPOSE 80 443 25
|
|
21
|
-
ENTRYPOINT ["/sbin/tini", "--", "npm", "run", "dev"]
|
|
22
|
-
|
|
23
|
-
WORKDIR /app
|
|
24
|
-
|
|
25
|
-
COPY index.js ./
|
|
26
|
-
COPY dev.js ./
|
|
27
|
-
COPY images ./images
|
|
28
|
-
COPY content ./content
|
|
29
|
-
COPY package*.json ./
|
|
30
|
-
RUN npm install --omit=dev
|
|
31
|
-
COPY src ./src
|
|
32
|
-
COPY dist ./dist
|