Added support for Docker usage in development
This commit is contained in:
13
Dockerfile
Normal file
13
Dockerfile
Normal file
@ -0,0 +1,13 @@
|
||||
FROM node:20
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package*.json ./
|
||||
|
||||
RUN npm install
|
||||
|
||||
VOLUME /app/node_modules
|
||||
|
||||
COPY . ./
|
||||
|
||||
ENTRYPOINT ["npm", "run", "dev"]
|
Reference in New Issue
Block a user