@sw-tsdk/connector 3.12.0 → 3.13.0-next.64cfa29

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.
@@ -0,0 +1,13 @@
1
+ # syntax=docker/dockerfile:1.2
2
+ FROM quay.io/swimlane-connectors/native_python:latest AS runtime-image
3
+
4
+ # Install OS packages
5
+ COPY requirements.txt .
6
+ RUN pip install --user -r requirements.txt
7
+
8
+ ENTRYPOINT ["python", "run.py"]
9
+
10
+ FROM runtime-image AS connector-image
11
+ {{#each labels}}
12
+ LABEL {{{@key}}}="{{{this}}}"
13
+ {{/each}}
package/package.json CHANGED
@@ -9,9 +9,9 @@
9
9
  "@oclif/core": "2.8.5",
10
10
  "@oclif/plugin-help": "5.2.9",
11
11
  "@oclif/plugin-plugins": "3.1.2",
12
- "@sw-tsdk/common": "3.12.0",
13
- "@sw-tsdk/core": "3.12.0",
14
- "@sw-tsdk/docker": "3.12.0",
12
+ "@sw-tsdk/common": "3.13.0-next.64cfa29",
13
+ "@sw-tsdk/core": "3.13.0-next.64cfa29",
14
+ "@sw-tsdk/docker": "3.13.0-next.64cfa29",
15
15
  "@swimlane/connector-interfaces": "1.11.0",
16
16
  "@swimlane/cosign": "1.4.1",
17
17
  "archiver": "5.3.1",
@@ -66,6 +66,6 @@
66
66
  "test": "jest --passWithNoTests"
67
67
  },
68
68
  "types": "lib/index.d.ts",
69
- "version": "3.12.0",
70
- "gitHead": "05e2670bb4686ff6f73a4bd44c063e025f1f8c1a"
69
+ "version": "3.13.0-next.64cfa29",
70
+ "gitHead": "64cfa29f087b0f645b4714f970ccaa1eff258bfb"
71
71
  }