@tsed/cli 3.16.0 → 3.16.1
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsed/cli",
|
|
3
|
-
"version": "3.16.
|
|
3
|
+
"version": "3.16.1",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"typings": "./lib/index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"decorators"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tsed/cli-core": "3.16.
|
|
27
|
+
"@tsed/cli-core": "3.16.1",
|
|
28
28
|
"@tsed/core": ">=6.95.1",
|
|
29
29
|
"@tsed/di": ">=6.95.1",
|
|
30
30
|
"@tsed/logger": ">=6.0.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"tslib": "2.3.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@tsed/cli-testing": "3.16.
|
|
36
|
+
"@tsed/cli-testing": "3.16.1",
|
|
37
37
|
"@types/change-case": "^2.3.1"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
@@ -10,22 +10,23 @@
|
|
|
10
10
|
## description : Dockerfile for TsED Application ##
|
|
11
11
|
## author : TsED team ##
|
|
12
12
|
## date : 2021-04-14 ##
|
|
13
|
-
## version : 1.
|
|
13
|
+
## version : 1.2 ##
|
|
14
14
|
## ##
|
|
15
15
|
###############################################################################
|
|
16
16
|
###############################################################################
|
|
17
17
|
FROM node:14-alpine
|
|
18
18
|
|
|
19
|
-
RUN apk update && apk add build-base git
|
|
19
|
+
RUN apk update && apk add build-base git python3
|
|
20
20
|
|
|
21
21
|
COPY package.json .
|
|
22
22
|
COPY yarn.lock .
|
|
23
|
+
|
|
24
|
+
RUN yarn install --production
|
|
25
|
+
|
|
23
26
|
COPY ./src ./src
|
|
24
27
|
COPY ./dist ./dist{{#or swagger oidc}}
|
|
25
28
|
COPY ./views ./views{{/or}}
|
|
26
29
|
|
|
27
|
-
RUN yarn install --production
|
|
28
|
-
|
|
29
30
|
EXPOSE 8081
|
|
30
31
|
ENV PORT 8081
|
|
31
32
|
ENV NODE_ENV production
|