@hybridless/hybridless 0.0.84-alpha18 → 0.0.84-alpha20
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": "@hybridless/hybridless",
|
|
3
|
-
"version": "0.0.84-
|
|
3
|
+
"version": "0.0.84-alpha20",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@babel/core": "^7.17.7",
|
|
21
|
-
"@hybridless/serverless-ecs-plugin": "0.0.
|
|
21
|
+
"@hybridless/serverless-ecs-plugin": "0.0.26",
|
|
22
22
|
"babel-loader": "^8.2.3",
|
|
23
23
|
"bluebird": "^3.7.2",
|
|
24
24
|
"dockerode": "^3.3.1",
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
FROM ghcr.io/hybridless/node:13-alpine
|
|
2
|
+
|
|
3
|
+
# Copy files
|
|
4
|
+
COPY /usr/src/app/ /usr/src/app/
|
|
5
|
+
COPY proxy.js /usr/src/httpd/proxy.js
|
|
6
|
+
|
|
7
|
+
# Set the working directory
|
|
8
|
+
WORKDIR /usr/src/app
|
|
9
|
+
|
|
10
|
+
RUN cd /usr/src/httpd/ && npm i -S @hybridless/runtime-nodejs-httpd@latest
|
|
11
|
+
|
|
12
|
+
EXPOSE $PORT
|
|
13
|
+
|
|
14
|
+
# Run the specified command within the container.
|
|
15
|
+
ENTRYPOINT ["node", "../httpd/proxy.js"]
|