init
This commit is contained in:
commit
2a7d118145
7 changed files with 670 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
FROM node:lts-alpine
|
||||
|
||||
USER node
|
||||
WORKDIR /home/node
|
||||
|
||||
COPY . .
|
||||
RUN npm ci
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
CMD ["npm", "run", "start"]
|
Loading…
Add table
Add a link
Reference in a new issue