1
0
Fork 0
This repository has been archived on 2025-08-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
trz-sentry-demo-legacy/app/Dockerfile
2023-09-26 21:43:36 +00:00

17 lines
198 B
Docker

FROM node:lts as build
WORKDIR /app
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY . .
FROM node:lts
COPY --from=build /app /app
EXPOSE 3000
CMD ["node", "/app/server.js"]