Added support for Docker usage in development

This commit is contained in:
2024-02-23 13:27:29 -05:00
parent 75552eccee
commit 65fc2b753b
5 changed files with 21 additions and 0 deletions

13
Dockerfile Normal file
View 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"]