@boxyhq/saml-jackson 0.2.3-beta.241 → 0.2.3-beta.242

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.
Files changed (2) hide show
  1. package/Dockerfile +2 -2
  2. package/package.json +3 -3
package/Dockerfile CHANGED
@@ -17,7 +17,7 @@ ENV NODE_ENV production
17
17
  RUN addgroup -g 1001 -S nodejs
18
18
  RUN adduser -S nodejs -u 1001
19
19
 
20
- COPY --from=deps /app/src ./src
20
+ COPY --from=deps /app/dist ./dist
21
21
  COPY --from=deps /app/node_modules ./node_modules
22
22
  COPY --from=deps /app/package.json ./package.json
23
23
 
@@ -26,4 +26,4 @@ USER nodejs
26
26
  EXPOSE 5000
27
27
  EXPOSE 6000
28
28
 
29
- CMD [ "node", "src/jackson.js" ]
29
+ CMD [ "node", "dist/jackson.js" ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boxyhq/saml-jackson",
3
- "version": "0.2.3-beta.241",
3
+ "version": "0.2.3-beta.242",
4
4
  "license": "Apache 2.0",
5
5
  "description": "SAML 2.0 service",
6
6
  "main": "dist/index.js",
@@ -51,6 +51,7 @@
51
51
  "ripemd160": "2.0.2",
52
52
  "thumbprint": "0.0.1",
53
53
  "typeorm": "0.2.41",
54
+ "typescript": "4.5.4",
54
55
  "xml-crypto": "2.1.3",
55
56
  "xml2js": "0.4.23",
56
57
  "xmlbuilder": "15.1.1"
@@ -73,8 +74,7 @@
73
74
  "sinon": "12.0.1",
74
75
  "tap": "15.1.5",
75
76
  "ts-node": "10.4.0",
76
- "tsconfig-paths": "3.12.0",
77
- "typescript": "4.5.4"
77
+ "tsconfig-paths": "3.12.0"
78
78
  },
79
79
  "lint-staged": {
80
80
  "*.{js,ts}": "eslint --cache --fix",