1 Commits

Author SHA1 Message Date
dependabot[bot]
c43dee30a4 Bump node from 18.10.0-buster-slim to 19.7.0-buster-slim
Bumps node from 18.10.0-buster-slim to 19.7.0-buster-slim.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-02-27 08:01:46 +00:00

View File

@@ -10,7 +10,7 @@ RUN go build -o bin/app cmd/app/main.go
# Final stage that will be pushed. # Final stage that will be pushed.
FROM debian:buster-slim FROM debian:buster-slim
FROM node:18.10.0-buster-slim as node FROM node:19.7.0-buster-slim as node
WORKDIR /root WORKDIR /root
@@ -74,5 +74,5 @@ RUN mkdir -p ./out
RUN chmod 0777 ./in RUN chmod 0777 ./in
RUN chmod 0777 ./out RUN chmod 0777 ./out
CMD ["./app", "--allow-all-origins=true", "--mermaid=./node_modules/.bin/mmdc", "--in=./in", "--out=./out", "--puppeteer=./puppeteer-config.json"] CMD ["./app", "--mermaid=./node_modules/.bin/mmdc", "--in=./in", "--out=./out", "--puppeteer=./puppeteer-config.json", "--allow-all-origins=true"]