updated docker file

This commit is contained in:
Mike 2024-12-26 07:38:38 -05:00
parent eb3068af96
commit 1d28883841
2 changed files with 3 additions and 1 deletions

View file

@ -1,11 +1,13 @@
FROM node:23-alpine
COPY . /app
COPY package.json package-lock.json /app
WORKDIR /app
RUN npm install .
COPY --chown nobody:nobody ./src /app
EXPOSE 3000
CMD ["node", "src/app.js"]