mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-18 05:41:49 +01:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-3035792 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-3035795 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-3092932 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-3092933 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-3105822
10 lines
131 B
Docker
10 lines
131 B
Docker
FROM node:18.13-alpine3.16
|
|
|
|
WORKDIR /code
|
|
|
|
COPY ["package.json", "package-lock.json", "./"]
|
|
|
|
RUN npm install --quiet
|
|
|
|
CMD ["true"]
|