The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-5438697 - https://snyk.io/vuln/SNYK-ALPINE317-OPENSSL-5438697
7 lines
119 B
Docker
7 lines
119 B
Docker
FROM node:20.1-bullseye-slim
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
RUN npm install
|
|
RUN npm ci
|
|
EXPOSE 3000
|
|
CMD ["npm", "start"]
|