mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-05 03:10:57 -04:00
updated docker file
This commit is contained in:
parent
eb3068af96
commit
1d28883841
2 changed files with 3 additions and 1 deletions
|
@ -1,11 +1,13 @@
|
||||||
FROM node:23-alpine
|
FROM node:23-alpine
|
||||||
|
|
||||||
COPY . /app
|
COPY package.json package-lock.json /app
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN npm install .
|
RUN npm install .
|
||||||
|
|
||||||
|
COPY --chown nobody:nobody ./src /app
|
||||||
|
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
||||||
CMD ["node", "src/app.js"]
|
CMD ["node", "src/app.js"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue