add docker
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM node:22.11.0-alpine3.20
|
||||
|
||||
WORKDIR /var/www/app
|
||||
|
||||
COPY package*.json .
|
||||
|
||||
RUN npm install
|
||||
COPY . .
|
||||
|
||||
CMD [ "tail", "-f", "/dev/null"]
|
||||
Reference in New Issue
Block a user