feat(dev): Implement Docker-based dev environment with hot reload and update CONTRIBUTING.md

This commit is contained in:
Abdelrahman mostafa 2024-07-24 00:18:03 +03:00
parent 00a52fc3b1
commit afd7c2943f
6 changed files with 232 additions and 10 deletions

10
backend.dev.dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM node:slim
WORKDIR /home/perplexica
COPY package.json yarn.lock ./
RUN yarn install
COPY . .
CMD ["yarn", "dev"]