Skip to content

Commit f2bee0c

Browse files
committed
Add supplemental files to support updated addons injection module
1 parent 9ec259b commit f2bee0c

File tree

7 files changed

+4113
-1
lines changed

7 files changed

+4113
-1
lines changed

dockerfiles/docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ services:
4444
command: [
4545
"wrangler",
4646
"dev",
47+
"--log-level=error",
4748
"--host=nginx:8080", # El Proxito on NGINX configuration
4849
"--ip=0.0.0.0",
4950
"--port=8000",

packages/addons-inject/Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
FROM node:18.15
2-
RUN npm install -g [email protected]
2+
COPY package.json /usr/src/app/packages/addons-inject/
3+
COPY index.js /usr/src/app/packages/addons-inject/
4+
COPY wrangler.toml /usr/src/app/packages/addons-inject/
5+
WORKDIR /usr/src/app/packages/addons-inject/
6+
RUN npm install --omit dev
7+
CMD ["node_modules/.bin/wrangler", "dev"]

0 commit comments

Comments
 (0)